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.
10 lines
226 B
10 lines
226 B
4 years ago
|
extern "C" int* i;
|
||
|
extern "C" { int* i; }
|
||
|
int* i;
|
||
|
extern "C" NSString* i;
|
||
|
extern "C" { NSString* i; }
|
||
|
NSString* i;
|
||
|
|
||
|
__attribute__((visibility ("default"))) int* i;
|
||
|
__attribute__((visibility ("default"))) NSString* i;
|