mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
17 lines
308 B
C
17 lines
308 B
C
#ifndef RGBDS_LINK_TYPES_H
|
|
#define RGBDS_LINK_TYPES_H
|
|
|
|
#ifndef _MAX_PATH
|
|
#define _MAX_PATH 512
|
|
#endif
|
|
|
|
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
|