mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
15 lines
285 B
C
15 lines
285 B
C
#ifndef ASMOTOR_LIB_TYPES_H
|
|
#define ASMOTOR_LIB_TYPES_H
|
|
|
|
#define _MAX_PATH 512
|
|
|
|
typedef unsigned char UBYTE;
|
|
typedef signed char SBYTE;
|
|
typedef unsigned short UWORD;
|
|
typedef signed short SWORD;
|
|
typedef unsigned long ULONG;
|
|
typedef signed long SLONG;
|
|
typedef signed char BBOOL;
|
|
|
|
#endif
|