djfumberger / xbmc-remote
- Source
- Commits
- Network (5)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
db8efdb
xbmc-remote / main.m
| 930a6445 » | djfumberger | 2008-10-28 | 1 | // | |
| 2 | // main.m | ||||
| 3 | // NavTest | ||||
| 4 | // | ||||
| 5 | // Created by David Fumberger on 30/07/08. | ||||
| 6 | // Copyright collect3 2008. All rights reserved. | ||||
| 7 | // | ||||
| 8 | |||||
| 9 | #import <UIKit/UIKit.h> | ||||
| 10 | |||||
| 11 | int main(int argc, char *argv[]) { | ||||
| 12 | |||||
| 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; | ||||
| 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); | ||||
| 15 | [pool release]; | ||||
| 16 | return retVal; | ||||
| 17 | } | ||||
