mirror of
https://github.com/fancycode/MemoryModule
synced 2026-06-06 15:44:28 +00:00
11 lines
197 B
C
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);
|
|
|
|
} |