mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
9 lines
138 B
C
9 lines
138 B
C
#ifdef _MSC_VER
|
|
#define DllExport __declspec(dllexport)
|
|
#else
|
|
#define DllExport
|
|
#endif
|
|
|
|
DllExport void foo1() {}
|
|
DllExport void foo2() {}
|