mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-07-22 14:45:23 -04:00
11 lines
187 B
C
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);
|
|
|
|
} |