blob: bf4f8028e57c50b3dadeb3ee11b44efec8bdf828 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|