You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
313 B
14 lines
313 B
4 months ago
|
@class NSError;
|
||
|
|
||
|
#pragma clang assume_nonnull begin
|
||
|
|
||
|
#ifdef USE_MUTABLE
|
||
|
typedef struct __attribute__((objc_bridge_mutable(NSError))) __CFError * CFErrorRef;
|
||
|
#else
|
||
|
typedef struct __attribute__((objc_bridge(NSError))) __CFError * CFErrorRef;
|
||
|
#endif
|
||
|
|
||
|
void func1(CFErrorRef *error);
|
||
|
|
||
|
#pragma clang assume_nonnull end
|