mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 18:48:14 +00:00
12 lines
248 B
C
12 lines
248 B
C
|
#ifdef _WIN32
|
||
|
# ifdef testc2_EXPORTS
|
||
|
# define CM_TEST_LIB_EXPORT __declspec( dllexport )
|
||
|
# else
|
||
|
# define CM_TEST_LIB_EXPORT __declspec( dllimport )
|
||
|
# endif
|
||
|
#else
|
||
|
# define CM_TEST_LIB_EXPORT
|
||
|
#endif
|
||
|
|
||
|
CM_TEST_LIB_EXPORT float Lib2Func();
|