diff options
Diffstat (limited to 'Tests/COnly/testCModule.c')
-rw-r--r-- | Tests/COnly/testCModule.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/COnly/testCModule.c b/Tests/COnly/testCModule.c new file mode 100644 index 0000000..1a89292 --- /dev/null +++ b/Tests/COnly/testCModule.c @@ -0,0 +1,6 @@ +#ifdef _WIN32 +# define TEST_EXPORT __declspec(dllexport) +#else +# define TEST_EXPORT +#endif +TEST_EXPORT int testCModule(void) { return 0; } |