18 lines
234 B
C
18 lines
234 B
C
|
|
#ifndef _DLL_H_
|
||
|
|
#define _DLL_H_
|
||
|
|
|
||
|
|
#if BUILDING_DLL
|
||
|
|
#define DLLIMPORT __declspec(dllexport)
|
||
|
|
#else
|
||
|
|
#define DLLIMPORT __declspec(dllimport)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
DLLIMPORT int __stdcall NGToolsCal(void);
|
||
|
|
|
||
|
|
|
||
|
|
DLLIMPORT int __stdcall Test(void);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|