diff options
Diffstat (limited to 'test cases/windows/7 dll versioning/lib.c')
-rw-r--r-- | test cases/windows/7 dll versioning/lib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/windows/7 dll versioning/lib.c b/test cases/windows/7 dll versioning/lib.c new file mode 100644 index 0000000..37e0d1d --- /dev/null +++ b/test cases/windows/7 dll versioning/lib.c @@ -0,0 +1,6 @@ +#ifdef _WIN32 +__declspec(dllexport) +#endif +int myFunc(void) { + return 55; +} |