GPAK  1.0.0
A general-purpose archive library

◆ gpak_compression_deflate

Brief Description:\n Enumeration representing the deflate compression levels for G-PAK.

This enumeration contains values representing the different compression levels that can be used with the deflate algorithm in G-PAK operations. The available compression levels are none, fast, and best.

Enumerator
GPAK_COMPRESSION_DEFLATE_NONE 

No compression.

GPAK_COMPRESSION_DEFLATE_FAST 

Fast compression.

GPAK_COMPRESSION_DEFLATE_BEST 

Best compression.

Definition at line 51 of file gpak_data.h.

52 {
53  GPAK_COMPRESSION_DEFLATE_NONE = 0, /**< No compression. */
54  GPAK_COMPRESSION_DEFLATE_FAST = 1, /**< Fast compression. */
55  GPAK_COMPRESSION_DEFLATE_BEST = 9 /**< Best compression. */
56 };
@ GPAK_COMPRESSION_DEFLATE_NONE
Definition: gpak_data.h:53
@ GPAK_COMPRESSION_DEFLATE_BEST
Definition: gpak_data.h:55
@ GPAK_COMPRESSION_DEFLATE_FAST
Definition: gpak_data.h:54