89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
-
-
-
+
+
+
+
+
+
+
+
|
(class_ *)[[class_ alloc] init]); \
} \
\
WINAPI int \
WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, \
LPSTR lpCmdLine, int nShowCmd) \
{ \
extern void __getmainargs(int *, char ***, char ***, \
int, int *); \
extern int _CRT_glob; \
int argc = 0, si = 0; \
char **argv = NULL, **envp = NULL; \
\
__getmainargs(&argc, &argv, &envp, _CRT_glob, &si); \
\
return OFApplicationMain(&argc, &argv, \
(class_ *)[[class_ alloc] init]); \
}
# ifdef __cplusplus
extern "C" {
# endif
extern void __getmainargs(int *, char ***, char ***, int, int *);
extern int _CRT_glob;
# ifdef __cplusplus
}
# endif
#endif
#ifdef OF_HAVE_PLEDGE
# define OF_HAVE_SANDBOX
#endif
/**
|