Files
2024-08-22 12:42:32 -04:00

40 lines
588 B
C

#ifndef TYPES_H
#define TYPES_H
#ifdef __cplusplus
#include <cstdarg>
#include <cstddef>
#include <new>
#else
#include <stdarg.h>
#include <stddef.h>
#endif
#include <decomp.h>
#include <macros.h>
typedef unsigned long long u64;
typedef signed long long s64;
typedef unsigned long u32;
typedef signed long s32;
typedef unsigned short u16;
typedef signed short s16;
typedef unsigned char u8;
typedef signed char s8;
typedef float f32;
typedef double f64;
typedef int UNKWORD;
typedef void UNKTYPE;
enum { FALSE, TRUE };
typedef int BOOL;
typedef void (*funcptr_t)(void);
#endif