mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
12 lines
157 B
C
12 lines
157 B
C
#ifndef RGBDS_TYPES_H
|
|
#define RGBDS_TYPES_H
|
|
|
|
#ifndef _MAX_PATH
|
|
#define _MAX_PATH 512
|
|
#endif
|
|
|
|
typedef unsigned long ULONG;
|
|
typedef signed long SLONG;
|
|
|
|
#endif
|