mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 12:02:00 +08:00
11 lines
235 B
C
11 lines
235 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
typedef unsigned char *POINTER;
|
|
typedef unsigned char BYTE;
|
|
typedef unsigned char UCHAR;
|
|
typedef unsigned short int WORD;
|
|
typedef int LONG;
|
|
typedef unsigned int DWORD;
|
|
typedef unsigned int UINT4;
|
|
#endif
|