1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/*
Project: Ycode
Author: Gregory John Casamento,,,
Created: 2017-08-15 03:31:31 -0400 by heron
*/
#import <AppKit/AppKit.h>
int
main(int argc, const char *argv[])
{
// Uncomment if your application is Renaissance application
/* CREATE_AUTORELEASE_POOL (pool);
[NSApplication sharedApplication];
[NSApp setDelegate: [AppController new]];
#ifdef GNUSTEP
[NSBundle loadGSMarkupNamed: @"MainMenu-GNUstep" owner: [NSApp delegate]];
#else
[NSBundle loadGSMarkupNamed: @"MainMenu-OSX" owner: [NSApp delegate]];
#endif
RELEASE (pool);
*/
return NSApplicationMain (argc, argv);
}
|