Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation
CZipActionCallback::CMultiActionsInfo Struct Reference

#include <ZipCallback.h>

Public Member Functions

ZIP_SIZE_TYPE LeftBytesToProcess () const
 
ZIP_SIZE_TYPE LeftFilesToProcess () const
 

Public Attributes

ZIP_SIZE_TYPE m_uBytesProcessed
 The total number of bytes processed so far.
 
ZIP_SIZE_TYPE m_uFilesProcessed
 The total number of files processed so far.
 
ZIP_SIZE_TYPE m_uTotalBytesToProcess
 The total number of bytes to process.
 
ZIP_SIZE_TYPE m_uTotalFilesToProcess
 The total number of files to process.
 

Friends

struct CZipActionCallback
 

Detailed Description

A structure that provides global information in case of using multiple actions callbacks.

See Also
Progress Notifications: Using Callback Objects
cbMultiActions

Member Function Documentation

ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::LeftBytesToProcess ( ) const
inline

Returns the number of bytes left to process.

Returns
The number of bytes left to process.
ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::LeftFilesToProcess ( ) const
inline

Returns the number of files left to process.

Returns
The number of files left to process.

Member Data Documentation

ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::m_uBytesProcessed

The total number of bytes processed so far.

ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::m_uFilesProcessed

The total number of files processed so far.

ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::m_uTotalBytesToProcess

The total number of bytes to process.

ZIP_SIZE_TYPE CZipActionCallback::CMultiActionsInfo::m_uTotalFilesToProcess

The total number of files to process.


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