diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-10-03 01:22:00 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-10-03 01:22:00 +0000 |
| commit | 956e58158d94e343cbaa83abfc314daa94bdee12 (patch) | |
| tree | 834b84034aac89115a20140972b625346c8fc971 /macosx/Source | |
| parent | c460790f50578b651f2b36226474b2b3d2218a06 (diff) | |
| download | pcsxr-956e58158d94e343cbaa83abfc314daa94bdee12.tar.gz | |
OS X: moving stuff around.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@91786 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Source')
| -rw-r--r-- | macosx/Source/PcsxrPlugin.h | 2 | ||||
| -rw-r--r-- | macosx/Source/PcsxrPlugin.m | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/macosx/Source/PcsxrPlugin.h b/macosx/Source/PcsxrPlugin.h index 14d6bca1..2bace47b 100644 --- a/macosx/Source/PcsxrPlugin.h +++ b/macosx/Source/PcsxrPlugin.h @@ -27,6 +27,6 @@ - (long)shutdownAs:(int)aType; - (void)aboutAs:(int)type; - (void)configureAs:(int)type; -@property (readonly) BOOL verifyOK; +- (BOOL)verifyOK; @end diff --git a/macosx/Source/PcsxrPlugin.m b/macosx/Source/PcsxrPlugin.m index 3b43cbb8..ae2be3cc 100644 --- a/macosx/Source/PcsxrPlugin.m +++ b/macosx/Source/PcsxrPlugin.m @@ -239,6 +239,8 @@ } #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 { @@ -316,9 +318,6 @@ #endif } -#define PluginSymbolNameConfigure(type) PluginSymbolName(type, @"configure") -#define PluginSymbolNameAbout(type) PluginSymbolName(type, @"about") - - (BOOL)hasAboutAs:(int)aType { SysLoadSym(pluginRef, [PluginSymbolNameAbout(aType) |
