📄 example.h
字号:
/* Example header file Do not use this header file in the WiZ application, use WIZ.H instead.*/#ifndef _EXAMPLE_H#define _EXAMPLE_H#include <windows.h>#ifdef __RSXNT__# include "win32/rsxntwin.h"#endif#include <assert.h> /* required for all Windows applications */#include <stdlib.h>#include <stdio.h>#include <commdlg.h>#ifndef __RSXNT__# include <dlgs.h>#endif#include <windowsx.h>#include "structs.h"/* Defines */#ifndef MSWIN#define MSWIN#endiftypedef int (WINAPI * _DLL_UNZIP)(int, char **, int, char **, LPDCL, LPUSERFUNCTIONS);typedef int (WINAPI * _USER_FUNCTIONS)(LPUSERFUNCTIONS);/* Global variables */extern LPUSERFUNCTIONS lpUserFunctions;extern LPDCL lpDCL;extern HINSTANCE hUnzipDll;extern int hFile; /* file handle *//* Global functions */extern _DLL_UNZIP Wiz_SingleEntryUnzip;extern _USER_FUNCTIONS Wiz_Init;int WINAPI DisplayBuf(LPSTR, unsigned long);/* Procedure Calls */void WINAPI ReceiveDllMessage(unsigned long, unsigned long, unsigned, unsigned, unsigned, unsigned, unsigned, unsigned, char, LPSTR, LPSTR, unsigned long, char);#endif /* _EXAMPLE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -