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
+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);
}