Uncomp.cpp
上传用户:deer201011
上传日期:2022-06-24
资源大小:10k
文件大小:1k
源码类别:

压缩解压

开发平台:

Visual C++

  1. // Uncomp.cpp
  2. #include "CompressedFile.h"
  3. BOOL CUncompressedFile::Open( const char *pszFileName, unsigned int nOpenFlags, CFileException *pError )
  4. {
  5. m_nCompressionType = -1;
  6. if( CCompressedFile::Open( pszFileName, nOpenFlags, pError ) ){
  7. CCompressedFile::SetSizeToFileLength();
  8. return( TRUE );
  9. }
  10. else return( FALSE );
  11. }
  12. unsigned int CUncompressedFile::Read( void far *lpBuf, unsigned int nCount )
  13. {
  14. return( CCompressedFile::ReadBytes( lpBuf, nCount ) );
  15. }
  16. void CUncompressedFile::Write( void far *lpBuf, unsigned int nCount )
  17. {
  18. CCompressedFile::WriteBytes( lpBuf, nCount );
  19. }