WDTVlive-iPhone-remote/WDTVlive/main.m
2011-10-05 01:23:56 +02:00

17 lines
361 B
Objective-C

//
// main.m
// WDTVlive
//
// Created by Jeena Paradies on 04/10/2011.
// 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;
}