Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation
The ZipArchive Library
CZipCentralDir::CZipFindFast Struct Reference

#include <ZipCentralDir.h>

Public Member Functions

 CZipFindFast (CZipFileHeader *pHeader, ZIP_INDEX_TYPE uIndex)

Public Attributes

CZipFileHeaderm_pHeader
ZIP_INDEX_TYPE m_uIndex

Detailed Description

Used in fast finding files by the filename. A structure for the internal use only.

See also
CZipCentralDir::m_pFindArray
CZipArchive::FindFile
CZipArchive::EnableFindFast

Constructor & Destructor Documentation

◆ CZipFindFast()

CZipCentralDir::CZipFindFast::CZipFindFast ( CZipFileHeader * pHeader,
ZIP_INDEX_TYPE uIndex )
inline

Initializes a new instance with a file header and index.

Parameters
pHeaderPointer to the file header.
uIndexIndex in the central directory.

Member Data Documentation

◆ m_pHeader

CZipFileHeader* CZipCentralDir::CZipFindFast::m_pHeader

A pointer to the structure in CZipCentralDir. We extract a name from it.

◆ m_uIndex

ZIP_INDEX_TYPE CZipCentralDir::CZipFindFast::m_uIndex

The index in the central directory of the m_pHeader.


The documentation for this struct was generated from the following file:
Back To Top Up