Files
MemoryModule/example/SampleDLL/SampleDLL.h
T
2010-10-24 00:37:53 +02:00

12 lines
188 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);
}