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
29 lines
756 B
C++
29 lines
756 B
C++
// ZipInternalInfo.cpp: implementation of the CZipInternalInfo class.
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2000 Tadeusz Dracz.
|
|
// For conditions of distribution and use, see copyright notice in ZipArchive.h
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "ZipInternalInfo.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CZipInternalInfo::CZipInternalInfo()
|
|
{
|
|
m_iBufferSize = 16384;
|
|
}
|
|
|
|
CZipInternalInfo::~CZipInternalInfo()
|
|
{
|
|
|
|
}
|
|
|
|
void CZipInternalInfo::Init()
|
|
{
|
|
m_pBuffer.Allocate(m_iBufferSize);
|
|
}
|