/Mobile/iPhone/StoffiRemote/StoffiRemote/main.m
http://yet-another-music-application.googlecode.com/ · Objective C · 17 lines · 8 code · 2 blank · 7 comment · 0 complexity · 93dfae17e7df6b933fb915d79d043270 MD5 · raw file
- //
- // main.m
- // StoffiRemote
- //
- // Created by Fredrik Gadnell on 9/11/11.
- // Copyright 2011 __MyCompanyName__. 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;
- }