Run more tests with sample DLLs.

This commit is contained in:
Joachim Bauch
2015-03-01 01:04:17 +01:00
parent 36574a5638
commit 2da44d00e9
9 changed files with 253 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
extern "C" {
#ifdef SAMPLEDLL_EXPORTS
#define SAMPLEDLL_API __declspec(dllexport)
#else
#define SAMPLEDLL_API __declspec(dllimport)
#endif
SAMPLEDLL_API int addNumbers(int a, int b);
}