~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/modules/plugin/tools/XPIPackager/ZipInternalInfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ZipInternalInfo.h: interface for the CZipInternalInfo class.
 
2
//
 
3
////////////////////////////////////////////////////////////////////////////////
 
4
//  Copyright (C) 2000 Tadeusz Dracz.
 
5
//  For conditions of distribution and use, see copyright notice in ZipArchive.h
 
6
////////////////////////////////////////////////////////////////////////////////
 
7
 
 
8
#if !defined(AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_)
 
9
#define AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_
 
10
 
 
11
#if _MSC_VER > 1000
 
12
#pragma once
 
13
#endif // _MSC_VER > 1000
 
14
#include "ZipAutoBuffer.h"
 
15
#include "zlib.h"
 
16
 
 
17
class CZipInternalInfo  
 
18
{
 
19
public:
 
20
        DWORD m_iBufferSize;
 
21
        z_stream m_stream;
 
22
        DWORD m_uUncomprLeft;
 
23
        DWORD m_uComprLeft;
 
24
        DWORD m_uCrc32;
 
25
        void Init();
 
26
        CZipAutoBuffer m_pBuffer;
 
27
        CZipInternalInfo();
 
28
        virtual ~CZipInternalInfo();
 
29
 
 
30
};
 
31
 
 
32
#endif // !defined(AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_)