ObjFW  Diff

Differences From Artifact [24c74a3550]:

To Artifact [4689449381]:


64
65
66
67
68
69
70







71
72
73
74
75
76
77
+ (OFArray*)arguments;

/**
 * Terminates the application.
 */
+ (void)terminate;








/**
 * Sets argc and argv.
 *
 * You should not call this directly! Use of_application_main instead!
 *
 * \param argc The number of arguments
 * \param argv The argument values







>
>
>
>
>
>
>







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
+ (OFArray*)arguments;

/**
 * Terminates the application.
 */
+ (void)terminate;

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

/**
 * Sets argc and argv.
 *
 * You should not call this directly! Use of_application_main instead!
 *
 * \param argc The number of arguments
 * \param argv The argument values
106
107
108
109
110
111
112







113
114
115
116
117
118
 */
- run;

/**
 * Terminates the application.
 */
- (void)terminate;







@end

@interface OFObject (OFApplicationDelegate) <OFApplicationDelegate>
@end

extern int of_application_main(int, char*[], Class);







>
>
>
>
>
>
>






113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
 */
- run;

/**
 * Terminates the application.
 */
- (void)terminate;

/**
 * Terminates the application with the specified status.
 *
 * \param status The status with which the application will terminate
 */
- (void)terminateWithStatus: (int)status;
@end

@interface OFObject (OFApplicationDelegate) <OFApplicationDelegate>
@end

extern int of_application_main(int, char*[], Class);