mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-07-20 21:59:45 -04:00
12 lines
188 B
C
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);
|
|
|
|
}
|