mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
18 lines
416 B
C
18 lines
416 B
C
|
/*
|
||
|
* Blocks Runtime
|
||
|
*/
|
||
|
|
||
|
#include "Availability.h"
|
||
|
#ifdef __cplusplus
|
||
|
#define BLOCKS_EXPORT extern "C"
|
||
|
#else
|
||
|
#define BLOCKS_EXPORT extern
|
||
|
#endif
|
||
|
|
||
|
BLOCKS_EXPORT void *_Block_copy(void *);
|
||
|
BLOCKS_EXPORT void _Block_release(void *);
|
||
|
BLOCKS_EXPORT const char *_Block_get_types(void*) OBJC_NONPORTABLE;
|
||
|
|
||
|
#define Block_copy(x) ((__typeof(x))_Block_copy((void *)(x)))
|
||
|
#define Block_release(x) _Block_release((void *)(x))
|