OS X: moving stuff around.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@91786 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2014-10-03 01:22:00 +00:00
parent c460790f50
commit 956e58158d
2 changed files with 3 additions and 4 deletions

View File

@ -27,6 +27,6 @@
- (long)shutdownAs:(int)aType; - (long)shutdownAs:(int)aType;
- (void)aboutAs:(int)type; - (void)aboutAs:(int)type;
- (void)configureAs:(int)type; - (void)configureAs:(int)type;
@property (readonly) BOOL verifyOK; - (BOOL)verifyOK;
@end @end

View File

@ -239,6 +239,8 @@
} }
#define PluginSymbolName(type, theName) [[PcsxrPlugin prefixForType:type] stringByAppendingString:theName] #define PluginSymbolName(type, theName) [[PcsxrPlugin prefixForType:type] stringByAppendingString:theName]
#define PluginSymbolNameConfigure(type) PluginSymbolName(type, @"configure")
#define PluginSymbolNameAbout(type) PluginSymbolName(type, @"about")
- (void)runCommand:(id)arg - (void)runCommand:(id)arg
{ {
@ -316,9 +318,6 @@
#endif #endif
} }
#define PluginSymbolNameConfigure(type) PluginSymbolName(type, @"configure")
#define PluginSymbolNameAbout(type) PluginSymbolName(type, @"about")
- (BOOL)hasAboutAs:(int)aType - (BOOL)hasAboutAs:(int)aType
{ {
SysLoadSym(pluginRef, [PluginSymbolNameAbout(aType) SysLoadSym(pluginRef, [PluginSymbolNameAbout(aType)