Go to the source code of this file.
Defines | |
#define | UFF_COMPRESS 0x000008 |
Enumerations | |
enum | compf_result { COMPF_ERROR, COMPF_SUCCESS } |
enum | compf_type { COMPF_UNCOMPRESSED, COMPF_COMPRESSED, COMPF_FAILED } |
#define UFF_COMPRESS 0x000008 |
Definition at line 28 of file compress.h.
enum compf_result |
Definition at line 30 of file compress.h.
00030 { 00031 COMPF_ERROR, /* Compression failed. */ 00032 COMPF_SUCCESS /* Compression succeeded. */ 00033 } compf_result;
enum compf_type |
Definition at line 35 of file compress.h.
00035 { 00036 COMPF_UNCOMPRESSED, /* File is uncompressed. */ 00037 COMPF_COMPRESSED, /* File is compressed. */ 00038 COMPF_FAILED /* Could not determine file type. */ 00039 } compf_type;