ObjFW  Diff

Differences From Artifact [90bacfe610]:

To Artifact [f151a32031]:


13
14
15
16
17
18
19







20






21







22
23
24
25
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#ifdef __cplusplus
extern "C" {
#endif







extern void* objc_autoreleasePoolPush();






extern void objc_autoreleasePoolPop(void*);







extern id _objc_rootAutorelease(id object);
#ifdef __cplusplus
}
#endif







>
>
>
>
>
>
>

>
>
>
>
>
>
|
>
>
>
>
>
>
>




13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#ifdef __cplusplus
extern "C" {
#endif
/*! @file */

/*!
 * @brief Creates a new autorelease pool.
 *
 * @return An identifier for the created autorelease pool
 */
extern void* objc_autoreleasePoolPush();

/*!
 * @brief Drains an autorelease pool.
 *
 * @param pool An identifier for the pool to drain
 */
extern void objc_autoreleasePoolPop(void *pool);

/*!
 * @brief Autoreleases an object.
 *
 * @param object The object to autorelease
 * @return The autoreleased object
 */
extern id _objc_rootAutorelease(id object);
#ifdef __cplusplus
}
#endif