mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
498 B
C++
21 lines
498 B
C++
@interface CocoaDelegate : NSObject <NSApplicationDelegate> {
|
|
}
|
|
-(NSApplicationTerminateReply) applicationShouldTerminate:(NSApplication*)sender;
|
|
-(BOOL) applicationShouldHandleReopen:(NSApplication*)application hasVisibleWindows:(BOOL)flag;
|
|
-(void) run:(NSTimer*)timer;
|
|
-(void) updateInDock:(NSTimer*)timer;
|
|
@end
|
|
|
|
namespace phoenix {
|
|
|
|
struct pApplication {
|
|
static void run();
|
|
static bool pendingEvents();
|
|
static void processEvents();
|
|
static void quit();
|
|
|
|
static void initialize();
|
|
};
|
|
|
|
}
|