From ef79bbde537d6b9c745a7d86cb9df1d04c35590d Mon Sep 17 00:00:00 2001 From: PCSX* teams Date: Tue, 16 Nov 2010 14:15:22 +0200 Subject: pcsxr-1.9.92 --- macosx/PcsxPlugin.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 macosx/PcsxPlugin.h (limited to 'macosx/PcsxPlugin.h') diff --git a/macosx/PcsxPlugin.h b/macosx/PcsxPlugin.h new file mode 100644 index 0000000..c8d4767 --- /dev/null +++ b/macosx/PcsxPlugin.h @@ -0,0 +1,41 @@ +// +// PcsxPlugin.h +// Pcsx +// +// Created by Gil Pedersen on Fri Oct 03 2003. +// Copyright (c) 2003 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface PcsxPlugin : NSObject { + CFBundleRef pluginRef; + + NSString *path; + NSDate *modDate; + NSString *name; + long version; + int type; + int active; +} + ++ (NSString *)getPrefixForType:(int)type; ++ (NSString *)getDefaultKeyForType:(int)type; ++ (char **)getConfigEntriesForType:(int)type; + +- (id)initWithPath:(NSString *)aPath; + +- (NSString *)getDisplayVersion; +- (int)getType; +- (NSString *)path; +- (NSString *)description; +- (BOOL)hasAboutAs:(int)type; +- (BOOL)hasConfigureAs:(int)type; +- (long)initAs:(int)aType; +- (long)shutdownAs:(int)aType; +- (void)aboutAs:(int)type; +- (void)configureAs:(int)type; +- (BOOL)verifyOK; + +@end -- cgit v1.2.3