zlib库剖析:实现概览
Posted chulia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zlib库剖析:实现概览相关的知识,希望对你有一定的参考价值。
zlib库剖析(1):实现概览
http://blog.csdn.net/zhoudaxia/article/details/8034606
http://blog.chinaunix.net/uid-10225517-id-2968298.html
http://blog.csdn.net/zhoudaxia/article/details/8034609
http://blog.csdn.net/educast/article/details/38728465
http://blog.chinaunix.net/xmlrpc.php?id=5672211&r=blog/article&uid=24118190
zipper.h
// Zipper.h: interface for the CZipper class. // //////////////////////////////////////////////////////////////////////
#ifndef SMP_ZIPPER_H #define SMP_ZIPPER_H
#if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000
#ifndef MAX_PATH #define MAX_PATH 260 #endif
struct Z_FileInfo { int nFileCount; int nFolderCount; unsigned long dwUncompressedSize; };
class CZipper { public: CZipper(const char * szFilePath = 0); virtual ~CZipper();
// simple interface // works with prior opened zip bool AddFileToZip(const char * szFilePath); // extended interface bool OpenZip(const char * szFilePath); bool CloseZip(); // for multiple reuse void GetFileInfo(Z_FileInfo& info); protected: void* m_uzFile; Z_FileInfo m_info;
};
#endif // !defined(AFX_ZIPPER_H__4249275D_B50B_4AAE_8715_B706D1CA0F2F__INCLUDED_)
以上是关于zlib库剖析:实现概览的主要内容,如果未能解决你的问题,请参考以下文章
NHibernate3剖析:Mapping篇之ConfORM实战:概览