/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

  1. //
  2. // main.m
  3. // StoffiRemote
  4. //
  5. // Created by Fredrik Gadnell on 9/11/11.
  6. // Copyright 2011 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. int main(int argc, char *argv[])
  10. {
  11. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  12. int retVal = UIApplicationMain(argc, argv, nil, nil);
  13. [pool release];
  14. return retVal;
  15. }