dll1.h

来自「VC深入详解code.rar」· C头文件 代码 · 共 15 行

H
15
字号
#ifdef DLL1_API
#else
#define DLL1_API extern "C" _declspec(dllimport)
#endif

DLL1_API int _stdcall add(int a,int b);
DLL1_API int _stdcall subtract(int a,int b);

/*class  Point
{
public:
	void DLL1_API output(int x,int y);
	void test();
};*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?