mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
12 lines
173 B
C
12 lines
173 B
C
#ifdef _WIN32
|
|
#define DL_EXPORT __declspec( dllexport )
|
|
#else
|
|
#define DL_EXPORT
|
|
#endif
|
|
|
|
DL_EXPORT int TestDynamicLoaderData;
|
|
|
|
DL_EXPORT void TestDynamicLoaderFunction()
|
|
{
|
|
}
|