mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
8 lines
117 B
C++
8 lines
117 B
C++
#ifdef _MSC_VER
|
|
__declspec(dllexport)
|
|
#else
|
|
__attribute__((visibility("default")))
|
|
#endif
|
|
int foo() {
|
|
return 42;
|
|
}
|