X-Git-Url: https://git.mdrn.pl/wl-mobile.git/blobdiff_plain/bff5852b5ee1320a6eaf4256570784bbc024496f..b9acd6c8b2300a76624900cd19f9e40e59ff3f7b:/main.m diff --git a/main.m b/main.m new file mode 100644 index 0000000..f4289ab --- /dev/null +++ b/main.m @@ -0,0 +1,17 @@ +// +// main.m +// wl-mobi +// +// Created by FNP on 10/19/11. +// Copyright __MyCompanyName__ 2011. All rights reserved. +// + +#import + +int main(int argc, char *argv[]) { + + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate"); + [pool release]; + return retVal; +}