remove stuff we won't need
[pcsx_rearmed.git] / macosx / EmuThread.h
diff --git a/macosx/EmuThread.h b/macosx/EmuThread.h
deleted file mode 100644 (file)
index 21b031f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-//  EmuThread.h
-//  Pcsx
-//
-//  Created by Gil Pedersen on Sun Sep 21 2003.
-//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-#include <setjmp.h>
-
-@interface EmuThread : NSObject {
-       NSAutoreleasePool *pool;
-       jmp_buf  restartJmp;
-       BOOL wasPaused;
-}
-
-- (void)EmuThreadRun:(id)anObject;
-- (void)EmuThreadRunBios:(id)anObject;
-- (void)handleEvents;
-
-+ (void)run;
-+ (void)runBios;
-+ (void)stop;
-+ (BOOL)pause;
-+ (BOOL)pauseSafe;
-+ (void)resume;
-+ (void)resetNow;
-+ (void)reset;
-
-+ (BOOL)isPaused;
-+ (BOOL)active;
-+ (BOOL)isRunBios;
-
-+ (void)freezeAt:(NSString *)path which:(int)num;
-+ (BOOL)defrostAt:(NSString *)path;
-
-@end
-
-extern EmuThread *emuThread;