GPAK  1.0.0
A general-purpose archive library

◆ gpak_header_compression_algorithm

Brief Description:\n Enumeration representing the compression algorithms for G-PAK headers.

This enumeration contains values representing the different compression algorithms that can be used for G-PAK archive headers. The available compression algorithms are none, deflate, LZ4, and Zstandard (ZST).

Enumerator
GPAK_HEADER_COMPRESSION_NONE 

No compression.

GPAK_HEADER_COMPRESSION_DEFLATE 

Deflate compression algorithm.

GPAK_HEADER_COMPRESSION_ZST 

Zstandard (ZST) compression algorithm.

Definition at line 32 of file gpak_data.h.

33 {
34  GPAK_HEADER_COMPRESSION_NONE = 0, /**< No compression. */
35  GPAK_HEADER_COMPRESSION_DEFLATE = 1 << 0, /**< Deflate compression algorithm. */
36  GPAK_HEADER_COMPRESSION_ZST = 1 << 1 /**< Zstandard (ZST) compression algorithm. */
37 };
@ GPAK_HEADER_COMPRESSION_NONE
Definition: gpak_data.h:34
@ GPAK_HEADER_COMPRESSION_ZST
Definition: gpak_data.h:36
@ GPAK_HEADER_COMPRESSION_DEFLATE
Definition: gpak_data.h:35