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.
16 lines
363 B
16 lines
363 B
struct {
|
|
int foo;
|
|
} bar;
|
|
|
|
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;
|
|
|
|
#define DEFINE_NOTIFICATION(name) extern "C" __attribute__((visibility("default"))) NSString *const name = @#name;
|