-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfoNES_Types.h
34 lines (28 loc) · 1.25 KB
/
InfoNES_Types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*===================================================================*/
/* */
/* InfoNES_Types.h : Type definitions for InfoNES */
/* */
/* 2000/5/4 InfoNES Project ( based on pNesX ) */
/* */
/*===================================================================*/
#ifndef InfoNES_TYPES_H_INCLUDED
#define InfoNES_TYPES_H_INCLUDED
/*-------------------------------------------------------------------*/
/* Type definition */
/*-------------------------------------------------------------------*/
#ifndef DWORD
typedef unsigned long DWORD;
#endif /* !DWORD */
#ifndef WORD
typedef unsigned short WORD;
#endif /* !WORD */
#ifndef BYTE
typedef unsigned char BYTE;
#endif /* !BYTE */
/*-------------------------------------------------------------------*/
/* NULL definition */
/*-------------------------------------------------------------------*/
#ifndef NULL
#define NULL 0
#endif /* !NULL */
#endif /* !InfoNES_TYPES_H_INCLUDED */