diff options
Diffstat (limited to 'macosx/PcsxrMemCardController.h')
| -rwxr-xr-x | macosx/PcsxrMemCardController.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/macosx/PcsxrMemCardController.h b/macosx/PcsxrMemCardController.h index 8e92de95..213e1e2c 100755 --- a/macosx/PcsxrMemCardController.h +++ b/macosx/PcsxrMemCardController.h @@ -7,6 +7,8 @@ // #import <Cocoa/Cocoa.h> +#import "ARCBridge.h" +@class PcsxrMemCardArray; @interface PcsxrMemCardController : NSViewController { @@ -15,10 +17,12 @@ IBOutlet NSTextField *memCard1Label; IBOutlet NSTextField *memCard2Label; - NSMutableArray *memCard1Array; - NSMutableArray *memCard2Array; + PcsxrMemCardArray *memCard1Array; + PcsxrMemCardArray *memCard2Array; NSTimer *imageAnimateTimer; } +@property (readonly, arcretain) PcsxrMemCardArray *memCard1Array; +@property (readonly, arcretain) PcsxrMemCardArray *memCard2Array; - (IBAction)moveBlock:(id)sender; - (IBAction)formatCard:(id)sender; @@ -26,6 +30,4 @@ - (IBAction)newMemCard:(id)sender; - (IBAction)changeMemCard:(id)sender; - (void)loadMemoryCardInfoForCard:(int)theCard; -- (BOOL)isMemoryBlockEmptyOnCard:(int)aCard block:(int)aBlock; -- (int)countFreeBlocksOnCard:(int)aCard; @end |
