You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dws/ui/ui_darwin.m

19 lines
428 B
Matlab

7 years ago
#include <Cocoa/Cocoa.h>
#include "AppDelegate.h"
7 years ago
id defaultAutoreleasePool;
id appDelegate;
void Initialize(void) {
defaultAutoreleasePool = [NSAutoreleasePool new];
7 years ago
[NSApplication sharedApplication];
7 years ago
[NSApp setDelegate: [[AppDelegate new] autorelease]];
7 years ago
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
}
int Run(void) {
7 years ago
[NSApp run];
[defaultAutoreleasePool drain];
7 years ago
return 0;
}