home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip540.zip / windll / decs.h < prev    next >
C/C++ Source or Header  |  1998-09-27  |  961b  |  30 lines

  1. #ifndef __decs_h   /* prevent multiple inclusions */
  2. #define __decs_h
  3.  
  4. #include <windows.h>
  5. #ifndef __unzip_h
  6. #  include "unzip.h"
  7. #endif
  8. #ifndef __structs_h
  9. #  include "structs.h"
  10. #endif
  11.  
  12. #define WizMatch match
  13.  
  14. void    WINAPI Wiz_NoPrinting(int f);
  15. int     WINAPI Wiz_Validate(LPSTR archive, int AllCodes);
  16. BOOL    WINAPI Wiz_Init(zvoid *, LPUSERFUNCTIONS);
  17. BOOL    WINAPI Wiz_SetOpts(zvoid *, LPDCL);
  18. int     WINAPI Wiz_Unzip(zvoid *, int, char **, int, char **);
  19. int     WINAPI Wiz_SingleEntryUnzip(int, char **, int, char **,
  20.                                     LPDCL, LPUSERFUNCTIONS);
  21.  
  22. int     WINAPI Wiz_UnzipToMemory(LPSTR zip, LPSTR file,
  23.                                  LPUSERFUNCTIONS lpUserFunctions,
  24.                                  UzpBuffer *retstr);
  25. int     WINAPI Wiz_Grep(LPSTR archive, LPSTR file, LPSTR pattern,
  26.                         int cmd, int SkipBin,
  27.                         LPUSERFUNCTIONS lpUserFunctions);
  28.  
  29. #endif /* __decs_h */
  30.