added sample project

This commit is contained in:
Joachim Bauch
2004-10-10 16:31:50 +00:00
parent cc38494f47
commit 135337380a
8 changed files with 396 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "SampleDLL.h"
extern "C" {
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
}