Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation
The ZipArchive Library
ZipArchiveLib::CBaseLibCompressor::COptions Struct Reference

#include <BaseLibCompressor.h>

Inheritance diagram for ZipArchiveLib::CBaseLibCompressor::COptions:
Inheritance graph

Public Attributes

bool m_bDetectLibMemoryLeaks
Public Attributes inherited from CZipCompressor::COptions
int m_iBufferSize

Additional Inherited Members

Public Types inherited from CZipCompressor::COptions
enum  Constants { cDefaultBufferSize = 2 * 65536 }
Public Member Functions inherited from CZipCompressor::COptions
virtual COptions * Clone () const =0
virtual int GetType () const =0

Detailed Description

Represents options of compressors that use external libraries.

See also
Compressing Data
CZipArchive::SetCompressionOptions

Member Data Documentation

◆ m_bDetectLibMemoryLeaks

bool ZipArchiveLib::CBaseLibCompressor::COptions::m_bDetectLibMemoryLeaks

true, if the ZipArchive Library should detect memory leaks in an external library; false otherwise. Recommended to be set to true. If using for CZstdCompressor, it requires ZSTD_MULTITHREAD to be defined in the _features.h file.


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