summaryrefslogtreecommitdiff
path: root/macosx/Source/PluginList.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/Source/PluginList.h')
-rw-r--r--macosx/Source/PluginList.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/macosx/Source/PluginList.h b/macosx/Source/PluginList.h
index 0ffdf38e..2383cf32 100644
--- a/macosx/Source/PluginList.h
+++ b/macosx/Source/PluginList.h
@@ -10,8 +10,9 @@
#import "PcsxrPlugin.h"
//extern NSMutableArray *plugins;
+@class PcsxrPlugin;
-@interface PluginList : NSObject
+@interface PluginList : NSObject <NSFastEnumeration>
+ (PluginList *)list;
@@ -25,4 +26,7 @@
- (void)disableNetPlug;
- (void)enableNetPlug;
+- (PcsxrPlugin*)objectAtIndexedSubscript:(NSInteger)index;
+- (NSInteger)count;
+
@end