summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsua/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip-apps/src/ipjsua/main.m')
-rw-r--r--pjsip-apps/src/ipjsua/main.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/pjsip-apps/src/ipjsua/main.m b/pjsip-apps/src/ipjsua/main.m
new file mode 100644
index 00000000..9451af16
--- /dev/null
+++ b/pjsip-apps/src/ipjsua/main.m
@@ -0,0 +1,17 @@
+//
+// main.m
+// ipjsua
+//
+// Created by Liong Sauw Ming on 3/23/10.
+// Copyright Teluu Inc. (http://www.teluu.com) 2010. 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;
+}
+