ZipException.h
上传用户:sfdasf1q
上传日期:2021-05-08
资源大小:99k
文件大小:2k
源码类别:

压缩解压

开发平台:

Visual C++

  1. // ZipException.h: interface for the CZipException class.
  2. //
  3. // Copyright (C) 2000 Tadeusz Dracz
  4. //////////////////////////////////////////////////////////////////////
  5. #if !defined(AFX_ZIPEXCEPTION_H__E3546921_D728_11D3_B7C7_E77339672847__INCLUDED_)
  6. #define AFX_ZIPEXCEPTION_H__E3546921_D728_11D3_B7C7_E77339672847__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. class CZipException : public CException  
  11. {
  12. public:
  13. DECLARE_DYNAMIC(CZipException)
  14. // sygnalize whether the error occured during zip or unzip
  15. bool m_bDuringZip;
  16. // convert zlib library error code to a ZipException code
  17. static int ZipErrToCause(int iZipError);
  18. // name of the zip file where the error occured
  19. CString m_szFileName;
  20. enum
  21. {
  22. noError,
  23. generic,
  24. streamEnd,
  25. needDict,
  26. errNo,
  27. streamError,
  28. dataError,
  29. memError,
  30. bufError,
  31. versionError,
  32. badFuncParam,
  33. badZipFile,
  34. badCrc,
  35. };
  36. // cause - takes one of the codes above
  37. int m_iCause;
  38. CZipException(int iCause = generic, LPCTSTR lpszZipName = NULL, bool bDuringZip = true);
  39. virtual ~CZipException();
  40. };
  41. // throw zip exception
  42. // Parameters:
  43. // iZipError - zlib error code
  44. // lpszZipName - name of the file where the error occured
  45. // bzipFile - true if the error occured while compression, 
  46. //        false - decompression
  47. void AfxThrowZipException(int iZipError = 1000, LPCTSTR lpszZipName = NULL, bool bZipFile = true);
  48. #endif // !defined(AFX_ZIPEXCEPTION_H__E3546921_D728_11D3_B7C7_E77339672847__INCLUDED_)