mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-07-21 14:16:03 -04: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);
|
|
|
|
} |