Enum DSTORAGE_COMPRESSION_FORMAT

Enum Documentation

enum DSTORAGE_COMPRESSION_FORMAT

The type of compression format used at the decompression stage. Your application can implement custom decompressors, starting from DSTORAGE_CUSTOM_COMPRESSION_0.

Values:

enumerator DSTORAGE_COMPRESSION_FORMAT_NONE

The data is uncompressed.

enumerator DSTORAGE_COMPRESSION_FORMAT_GDEFLATE

The data is compressed using the built-in GDEFLATE format.

enumerator DSTORAGE_CUSTOM_COMPRESSION_0

The data is stored in an application-defined custom format. The application must use IDStorageCustomDecompressionQueue to implement custom decompression. Additional custom compression formats can be used, for example (DSTORAGE_CUSTOM_COMPRESSION_0 + 1).