Initial Commit

This commit is contained in:
2024-08-07 09:09:36 -04:00
commit ca445435a0
458 changed files with 41370 additions and 0 deletions

25
common/TYPES.HPP Normal file
View File

@@ -0,0 +1,25 @@
#ifndef _COMMON_TYPES_HPP_
#define _COMMON_TYPES_HPP_
typedef unsigned char UCHAR;
typedef char CHAR;
typedef unsigned short USHORT;
typedef short SHORT;
typedef short Index;
#if defined(__FLAT__)
#define CHUGE char
#define UHUGE unsigned char
#define LHUGE unsigned long
#else
#define CHUGE char huge
#define UHUGE unsigned char huge
#define LHUGE unsigned long huge
#endif
#ifndef HUGE
#if defined(__FLAT__)
#define HUGE FAR
#else
#define HUGE huge
#endif
#endif
#endif