Files
MemoryModule/example/SampleDLL/SampleDLL.h
T
2010-10-23 22:29:04 +00:00

11 lines
187 B
C

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