comparison lua/luadyncall/src/cocoautil.m @ 0:0cfcc391201f

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:26:28 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0cfcc391201f
1 #import <Foundation/NSAutoreleasePool.h>
2 #import <AppKit/NSApplication.h>
3 NSAutoreleasePool* pool;
4
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 void CocoaInit();
9 void CocoaQuit();
10 #ifdef __cplusplus
11 }
12 #endif
13
14 void CocoaInit()
15 {
16 [[NSAutoreleasePool alloc] init];
17 NSApplicationLoad();
18 }
19
20 void CocoaQuit()
21 {
22 [pool drain];
23 }
24