istereo

view src/main.m @ 3:2c5620f0670c

trying to make this piece of crap work
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Sep 2011 05:33:19 +0300
parents 1bb950d0976b
children ff055bff6a15
line source
1 #import <UIKit/UIKit.h>
3 int main(int argc, char *argv[])
4 {
5 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
6 int retVal = UIApplicationMain(argc, argv, nil, nil);
7 [pool release];
8 return retVal;
9 }