mirror of https://github.com/bsnes-emu/bsnes.git
25 lines
574 B
C++
25 lines
574 B
C++
#if defined(Hiro_Application)
|
|
|
|
@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 hiro {
|
|
|
|
struct pApplication {
|
|
static auto run() -> void;
|
|
static auto pendingEvents() -> bool;
|
|
static auto processEvents() -> void;
|
|
static auto quit() -> void;
|
|
|
|
static auto initialize() -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|