mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03: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() {}
|