aboutsummaryrefslogtreecommitdiff
path: root/macosx/PcsxPluginDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxPluginDocument.h')
-rw-r--r--macosx/PcsxPluginDocument.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/macosx/PcsxPluginDocument.h b/macosx/PcsxPluginDocument.h
new file mode 100644
index 0000000..bf4f802
--- /dev/null
+++ b/macosx/PcsxPluginDocument.h
@@ -0,0 +1,20 @@
+//
+// PcsxPluginDocument.h
+// Pcsx
+//
+// Created by Gil Pedersen on Thu Jul 01 2004.
+// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
+//
+
+#import <AppKit/AppKit.h>
+
+
+@interface PcsxPluginDocument : NSDocument {
+ IBOutlet NSWindow *addPluginSheet;
+ IBOutlet NSTextField *pluginName;
+
+ BOOL moveOK;
+}
+- (IBAction)closeAddPluginSheet:(id)sender;
+
+@end