Source/main-iPhone.m
changeset 26 e7a464fb6d39
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Source/main-iPhone.m	Sun Jan 11 00:02:27 2009 -0800
     1.3 @@ -0,0 +1,17 @@
     1.4 +//
     1.5 +//  main.m
     1.6 +//  GGB-iPhone
     1.7 +//
     1.8 +//  Created by Jens Alfke on 3/7/08.
     1.9 +//  Copyright __MyCompanyName__ 2008. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <UIKit/UIKit.h>
    1.13 +
    1.14 +int main(int argc, char *argv[])
    1.15 +{
    1.16 +    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    1.17 +    int retVal = UIApplicationMain(argc, argv, nil, @"GGB_iPhoneAppDelegate");
    1.18 +    [pool release];
    1.19 +    return retVal;
    1.20 +}