Add files

This commit is contained in:
Cuyler36
2023-05-20 21:14:40 -04:00
parent d60a391a17
commit 29deabc35a
16 changed files with 465 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef JKRENUM_H
#define JKRENUM_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
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