aboutsummaryrefslogtreecommitdiff
path: root/macosx/PcsxPlugin.h
blob: c8d47679571c3cbf63381663a815e3cadf88fc04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
//  PcsxPlugin.h
//  Pcsx
//
//  Created by Gil Pedersen on Fri Oct 03 2003.
//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>


@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