diff options
Diffstat (limited to 'xcode/iPhoneOS/tinySAKTest/main.m')
-rw-r--r-- | xcode/iPhoneOS/tinySAKTest/main.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xcode/iPhoneOS/tinySAKTest/main.m b/xcode/iPhoneOS/tinySAKTest/main.m new file mode 100644 index 0000000..3940f0e --- /dev/null +++ b/xcode/iPhoneOS/tinySAKTest/main.m @@ -0,0 +1,16 @@ +// +// main.m +// TestIPhone01 +// +// Created by Laurent Etiemble on 01/04/10. +// Copyright __MyCompanyName__ 2010. All rights reserved. +// + +#import <UIKit/UIKit.h> + +int main(int argc, char *argv[]) { + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, nil); + [pool release]; + return retVal; +} |