intrface.h
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:5k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. //******************************************************************************
  2. //
  3. // File:        INTRFACE.H
  4. //
  5. // Description: This module acts as the interface between the Info-ZIP code and
  6. //              our Windows code in WINMAIN.CPP.  See INTRFACE.CPP for a more
  7. //              detailed description and the actual implementation.
  8. //
  9. // Copyright:   All the source files for Pocket UnZip, except for components
  10. //              written by the Info-ZIP group, are copyrighted 1997 by Steve P.
  11. //              Miller.  The product "Pocket UnZip" itself is property of the
  12. //              author and cannot be altered in any way without written consent
  13. //              from Steve P. Miller.
  14. //
  15. // Disclaimer:  All project files are provided "as is" with no guarantee of
  16. //              their correctness.  The authors are not liable for any outcome
  17. //              that is the result of using this source.  The source for Pocket
  18. //              UnZip has been placed in the public domain to help provide an
  19. //              understanding of its implementation.  You are hereby granted
  20. //              full permission to use this source in any way you wish, except
  21. //              to alter Pocket UnZip itself.  For comments, suggestions, and
  22. //              bug reports, please write to stevemil@pobox.com.
  23. //
  24. //
  25. // Date      Name          History
  26. // --------  ------------  -----------------------------------------------------
  27. // 02/01/97  Steve Miller  Created (Version 1.0 using Info-ZIP UnZip 5.30)
  28. //
  29. //******************************************************************************
  30. #ifndef __INTRFACE_H__
  31. #define __INTRFACE_H__
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. //******************************************************************************
  36. //***** Types and Structures
  37. //******************************************************************************
  38. typedef int (WINAPI DLLPRNT)(LPSTR, unsigned long);
  39. typedef int (WINAPI DLLPASSWORD)(LPSTR, int, LPCSTR, LPCSTR);
  40. typedef int (WINAPI DLLSERVICE)(LPSTR, unsigned long);
  41. typedef void (WINAPI DLLSND)(void);
  42. typedef int (WINAPI DLLREPLACE)(LPSTR);
  43. typedef void (WINAPI DLLMESSAGE)(ulg, ulg, int, int, int, int, int, int,
  44.                                  int, char*, char*, ulg);
  45. typedef struct _USERFUNCTIONS {
  46.    DLLPRNT       *print;
  47.    DLLSND        *sound;
  48.    DLLREPLACE    *replace;
  49.    DLLPASSWORD   *password;
  50.    DLLMESSAGE    *SendApplicationMessage;
  51.    DLLSERVICE    *ServiceApplication;
  52.    unsigned long  TotalSizeComp;
  53.    unsigned long  TotalSize;
  54.    int            CompFactor;
  55.    unsigned int   NumMembers;
  56.    WORD           cchComment;
  57. } USERFUNCTIONS, *LPUSERFUNCTIONS;
  58. typedef struct _DCL {
  59.    int PromptToOverwrite;
  60. } DCL, *LPDCL;
  61. typedef enum _OVERWRITE_MODE {
  62.    OM_PROMPT = 0,
  63.    OM_NEWER,
  64.    OM_ALWAYS,
  65.    OM_NEVER
  66. } OVERWRITE_MODE, *LPOVERWRITE_MODE;
  67. typedef struct _EXTRACT_INFO {
  68.    BOOL            fExtract;      // TRUE for extract, FALSE for test
  69.    DWORD           dwFileCount;   // Number of files to extract/test.
  70.    DWORD           dwByteCount;   // Total bytes to extract/test
  71.    LPSTR          *szFileList;    // ARGV list of files, NULL for all files.
  72.    BOOL            fRestorePaths; // TRUE to restore paths, FALSE to junk them.
  73.    OVERWRITE_MODE  overwriteMode; // How to handle file overwrites.
  74.    LPSTR           szMappedPath;  // Used to store mapped name. May be NULL.
  75.    BOOL            fAbort;        // Set during operation by UI to abort.
  76.    int             result;        // Result code from extraction/test.
  77.    // Window handles for the various controls in our progress dialogs.
  78.    HWND            hWndEditFile;
  79.    HWND            hWndProgFile;
  80.    HWND            hWndProgTotal;
  81.    HWND            hWndPercentage;
  82.    HWND            hWndFilesProcessed;
  83.    HWND            hWndBytesProcessed;
  84.    // Values used to keep track of our progress.
  85.    DWORD           dwFileOffset;
  86.    DWORD           dwFile;
  87.    DWORD           dwBytesTotalThisFile;
  88.    DWORD           dwBytesWrittenThisFile;
  89.    DWORD           dwBytesWrittenPreviousFiles;
  90.    LPCSTR          szFile;
  91.    BOOL            fNewLineOfText;
  92. } EXTRACT_INFO, *LPEXTRACT_INFO;
  93. typedef struct _DECRYPT_INFO {
  94.    int    retry;
  95.    LPSTR  szPassword;
  96.    DWORD  nSize;
  97.    LPCSTR szFile;
  98. } DECRYPT_INFO, *LPDECRYPT_INFO;
  99. //******************************************************************************
  100. //***** Function Prototypes
  101. //******************************************************************************
  102. int  DoListFiles(LPCSTR szZipFile);
  103. BOOL DoExtractOrTestFiles(LPCSTR szZipFile, EXTRACT_INFO *pei);
  104. int  DoGetComment(LPCSTR szZipFile);
  105. BOOL SetExtractToDirectory(LPTSTR szDirectory);
  106. int  win_fprintf(FILE *file, unsigned int dwCount, char far *buffer);
  107. //******************************************************************************
  108. //***** Global Variables
  109. //******************************************************************************
  110. #ifdef GLOBAL_DECLARE
  111. #undef GLOBAL_DECLARE
  112. #undef GLOBAL_INIT
  113. #endif
  114. #ifdef __INTRFACE_CPP__
  115.    #define GLOBAL_DECLARE
  116.    #define GLOBAL_INIT(value) =value
  117. #else
  118.    #define GLOBAL_DECLARE extern
  119.    #define GLOBAL_INIT(value)
  120. #endif
  121. GLOBAL_DECLARE jmp_buf         dll_error_return;
  122. GLOBAL_DECLARE LPDCL           lpDCL           GLOBAL_INIT(NULL);
  123. GLOBAL_DECLARE LPUSERFUNCTIONS lpUserFunctions GLOBAL_INIT(NULL);
  124. #ifdef __cplusplus
  125. } // extern "C"
  126. #endif
  127. #endif // __INTRFACE_H__