wzddll.h
来自「《Visual C++ MFC编程实例》配套代码」· C头文件 代码 · 共 29 行
H
29 行
/* WzdDll.h : Non-MFC Dll
*
*************************************************************/
#if !defined WZDDLL_H
#define WZDDLL_H
#ifdef __cplusplus
extern "C" {
#else
#endif /* __cplusplus */
#ifdef WZDDLL_BLD
#define DLL __declspec( dllexport )
#else
#define DLL
#endif
void DLL WzdMessageBox(LPSTR pszString);
void DLL DestroyWzdWindow(HWND hWnd);
void DLL WzdFunc3(BOOL b);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?