mirror of
https://github.com/reactos/CMake.git
synced 2024-12-25 21:15:37 +00:00
13 lines
212 B
C
13 lines
212 B
C
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
# define testExe2_EXPORT __declspec(dllexport)
|
|
#else
|
|
# define testExe2_EXPORT
|
|
#endif
|
|
|
|
testExe2_EXPORT int testExe2Func(void) { return 123; }
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|