bug # 163739 - XPI Packager adding the xpi packager to the mozilla tree. this is a windows only app used to build the xpi packager for building self installing xpi files. git-svn-id: svn://10.0.0.236/trunk@134725 18797224-902f-48f8-a5cc-f745e15eee43
33 lines
945 B
C++
33 lines
945 B
C++
// ZipInternalInfo.h: interface for the CZipInternalInfo class.
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2000 Tadeusz Dracz.
|
|
// For conditions of distribution and use, see copyright notice in ZipArchive.h
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_)
|
|
#define AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
#include "ZipAutoBuffer.h"
|
|
#include "zlib.h"
|
|
|
|
class CZipInternalInfo
|
|
{
|
|
public:
|
|
DWORD m_iBufferSize;
|
|
z_stream m_stream;
|
|
DWORD m_uUncomprLeft;
|
|
DWORD m_uComprLeft;
|
|
DWORD m_uCrc32;
|
|
void Init();
|
|
CZipAutoBuffer m_pBuffer;
|
|
CZipInternalInfo();
|
|
virtual ~CZipInternalInfo();
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_ZIPINTERNALINFO_H__C6749101_590C_4F74_8121_B82E3BE9FA44__INCLUDED_)
|