mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-04 12:44:03 +00:00
25 lines
382 B
C
25 lines
382 B
C
|
|
#ifndef _SYSTEM_H
|
|
#define _SYSTEM_H
|
|
|
|
#ifdef _WIN32
|
|
# include <windows.h>
|
|
#else
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
typedef int BOOL;
|
|
typedef unsigned short WORD;
|
|
typedef unsigned long DWORD;
|
|
|
|
typedef char CHAR;
|
|
typedef char *PCHAR;
|
|
#endif //!Win32
|
|
|
|
#endif // _SYSTEM_H
|