mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
80ef14e480
* match and link JKRAram.cpp * match and link JKRExpHeap * match and link JKRAramStream.cpp * match and link JKRFileLoader.cpp * match and link JKRFileFinder.cpp * JKernel Dump * match and link JKRAramArchive.cpp * match and link JKRDvdArchive.cpp * match and link JKRCompArchive.cpp * match but not link JKRDvdAramRipper * small refactors * match and link JKRThread.cpp * fix and link JKRDvdAramStream.cpp * Formatting fixes --------- Co-authored-by: SwareJonge <olaf23okken@gmail.com>
27 lines
484 B
C
27 lines
484 B
C
#ifndef JKRENUM_H
|
|
#define JKRENUM_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define JKRCOMPRESSION_NONE 0
|
|
#define JKRCOMPRESSION_YAY0 1
|
|
#define JKRCOMPRESSION_YAZ0 2
|
|
#define JKRCOMPRESSION_ASR 3
|
|
|
|
typedef enum JKRExpandSwitch
|
|
{
|
|
EXPAND_SWITCH_DEFAULT, /* Do nothing? treated same as 2 */
|
|
EXPAND_SWITCH_DECOMPRESS, /* Check for compression and decompress */
|
|
EXPAND_SWITCH_NONE /* Do nothing */
|
|
} JKRExpandSwitch;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|