summaryrefslogtreecommitdiff
path: root/macosx/PcsxrPlugin.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-10 01:02:14 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-10 01:02:14 +0000
commitf9cb1c85ed195c205d7bb48b69c83a7838cb9aa2 (patch)
tree0bc1e43f33158709d33c43b061f96145a98ad685 /macosx/PcsxrPlugin.h
parent564758db27f02a09c61a1ac068a2fa22c887a0dd (diff)
downloadpcsxr-f9cb1c85ed195c205d7bb48b69c83a7838cb9aa2.tar.gz
Messing with the OS X plug-in code:
Making it so that absolute paths are properly handled on plug-ins. Put the absolute path if we load a plug-in from somewhere else than the App's built-in location. Have path in PcsxrPlugin be an Objective C property. Also making the name a new Objective C property. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82165 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrPlugin.h')
-rwxr-xr-xmacosx/PcsxrPlugin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/PcsxrPlugin.h b/macosx/PcsxrPlugin.h
index dd5347e6..bd70854a 100755
--- a/macosx/PcsxrPlugin.h
+++ b/macosx/PcsxrPlugin.h
@@ -21,6 +21,9 @@
int active;
}
+@property (readonly) NSString *path;
+@property (readonly) NSString *name;
+
+ (NSString *)prefixForType:(int)type;
+ (NSString *)defaultKeyForType:(int)type;
+ (char **)configEntriesForType:(int)type;
@@ -30,7 +33,6 @@
- (NSString *)displayVersion;
- (int)type;
-- (NSString *)path;
- (NSUInteger)hash;
- (NSString *)description;
- (BOOL)hasAboutAs:(int)type;