Files
MemoryModule/example/SampleDLL/SampleDLL.h
T
2004-10-10 16:31:50 +00:00

11 lines
197 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);
}