example.h
来自「完整的解压zip文件的源码。包含密码功能」· C头文件 代码 · 共 55 行
H
55 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?