ObjFW  Diff

Differences From Artifact [e7a89febd1]:

To Artifact [24a84dfbfd]:


159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175






176
177
178
179
180
181
182
159
160
161
162
163
164
165










166
167
168
169
170
171
172
173
174
175
176
177
178







-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+







/*!
 * @brief Terminates the application with the specified status.
 *
 * @param status The status with which the application will terminate
 */
+ (void)terminateWithStatus: (int)status;

/*!
 * @brief Sets argc and argv.
 *
 * You should not call this directly, but use OF_APPLICATION_DELEGATE instead!
 *
 * @param argc The number of arguments
 * @param argv The argument values
 */
- (void)setArgumentCount: (int*)argc
       andArgumentValues: (char**[])argv;
- (void)OF_setArgumentCount: (int*)argc
	  andArgumentValues: (char**[])argv;
#ifdef _WIN32
- (void)OF_setArgumentCount: (int)argc
      andWideArgumentValues: (wchar_t*[])argv;
#endif

/*!
 * @brief Gets args and argv.
 *
 * @param argc A pointer where a pointer to argc should be stored
 * @param argv A pointer where a pointer to argv should be stored
 */