NGTOOLS_Dev-C/dll.h

18 lines
234 B
C
Raw Permalink Normal View History

2025-10-31 14:12:55 +00:00
#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