istereo

annotate src/main.m @ 26:862a3329a8f0

wohooo, added a shitload of code from zlib/libpng/libjpeg. When the good lord was raining shared libraries the iphone held a fucking umbrella...
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 06:28:38 +0300
parents 1bb950d0976b
children ff055bff6a15
rev   line source
nuclear@0 1 #import <UIKit/UIKit.h>
nuclear@0 2
nuclear@3 3 int main(int argc, char *argv[])
nuclear@3 4 {
nuclear@3 5 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
nuclear@3 6 int retVal = UIApplicationMain(argc, argv, nil, nil);
nuclear@3 7 [pool release];
nuclear@3 8 return retVal;
nuclear@0 9 }