⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zipinternalinfo.cpp

📁 这是一个用VC++编写的静态库
💻 CPP
字号:
// 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);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -