Changeset 3670 for pjproject/trunk/pjlib/src/pj/os_core_darwin.m
- Timestamp:
- Jul 20, 2011 3:00:48 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_darwin.m
r3664 r3670 18 18 */ 19 19 #include <pj/os.h> 20 #include "TargetConditionals.h" 21 22 #if TARGET_OS_IPHONE 23 24 PJ_DEF(int) pj_run_app(pj_main_func_ptr main_func, int argc, char *argv[], 25 unsigned flags) 26 { 27 return (*main_func)(argc, argv); 28 } 29 30 #else 31 20 32 #include <pthread.h> 21 33 #include <AppKit/AppKit.h> … … 85 97 return param.retval; 86 98 } 99 100 #endif
Note: See TracChangeset
for help on using the changeset viewer.