mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-19 10:08:56 +03:00
10 lines
156 B
C
10 lines
156 B
C
#if defined _WIN32 || defined __CYGWIN__
|
|
#define DLL_PUBLIC __declspec(dllexport)
|
|
#else
|
|
#define DLL_PUBLIC
|
|
#endif
|
|
|
|
int DLL_PUBLIC foo(void) {
|
|
return 0;
|
|
}
|