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
+10
View File
@@ -0,0 +1,10 @@
#include "SampleDLL.h"
extern "C" {
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
}