123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _EXAMPLE_H
- #define _EXAMPLE_H
- #include <windows.h>
- #include <assert.h> /* required for all Windows applications */
- #include <stdlib.h>
- #include <stdio.h>
- #include <commdlg.h>
- #include <dlgs.h>
- #include <windowsx.h>
- #ifndef EXPENTRY
- #define EXPENTRY WINAPI
- #endif
- #include "structs.h"
- #ifndef MSWIN
- #define MSWIN
- #endif
- typedef int (WINAPI * _DLL_ZIP)(ZCL);
- typedef int (WINAPI * _ZIP_USER_FUNCTIONS)(LPZIPUSERFUNCTIONS);
- typedef BOOL (WINAPI * ZIPSETOPTIONS)(LPZPOPT);
- extern LPZIPUSERFUNCTIONS lpZipUserFunctions;
- extern HINSTANCE hZipDll;
- extern int hFile;
- int WINAPI DisplayBuf(char far *, unsigned long int);
- extern _DLL_ZIP ZipArchive;
- extern _ZIP_USER_FUNCTIONS ZipInit;
- extern ZIPSETOPTIONS ZipSetOptions;
- #endif
|