ObjFW  Diff

Differences From Artifact [1afc7b2b50]:

To Artifact [439a147585]:


62
63
64
65
66
67
68

69

70
71
72
73
74
75

76

77
78
79
80
81
82
83
62
63
64
65
66
67
68
69

70
71
72
73
74
75
76
77

78
79
80
81
82
83
84
85







+
-
+






+
-
+







 * @brief A value representing no object.
 */
#define nil (id _Null_unspecified)0

/*!
 * @brief An Objective-C boolean representing true.
 *
 * @note This is a legacy from before C had a boolean type. Prefer the standard
 * @deprecated Use the standard C99 bool and true instead!
 *	 C99 true instead!
 */
#define YES true

/*!
 * @brief An Objective-C boolean representing false.
 *
 * @note This is a legacy from before C had a boolean type. Prefer the standard
 * @deprecated Use the standard C99 bool and false instead!
 *	 C99 false instead!
 */
#define NO false

/*! @file */

/*!
 * @brief A pointer to a class.
123
124
125
126
127
128
129

130

131
132
133
134
135
136
137
125
126
127
128
129
130
131
132

133
134
135
136
137
138
139
140







+
-
+







 */
typedef const struct objc_property *objc_property_t;

#if !defined(__wii__) && !defined(__amigaos__)
/*!
 * @brief An Objective-C boolean. Either @ref YES or @ref NO.
 *
 * @note This is a legacy from before C had a boolean type. Prefer the standard
 * @deprecated Use the standard C99 bool instead!
 *	 C99 bool instead!
 */
typedef bool BOOL;
#endif

/*!
 * @brief A method implemenation.
 *