GPAK
1.0.0
A general-purpose archive library
|
◆ gpak_mode_flag
This enumeration contains values representing the different mode flags that can be used to control the behavior of G-PAK archive operations, such as creating, reading, and updating archives. Definition at line 204 of file gpak_data.h. 207 GPAK_MODE_CREATE = 1 << 0, /**< Create mode: allows writing to the archive. Analogous to write byte operation. */
208 GPAK_MODE_READ_ONLY = 1 << 1, /**< Read-only mode: allows only reading from the archive. Analogous to read byte operation. */
|