mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
15 lines
315 B
C
15 lines
315 B
C
// UnderC Development Project, 2001
|
|
#ifndef _WINDOWS_H
|
|
#define _WINDOWS_H
|
|
typedef unsigned long DWORD, *PDWORD;
|
|
typedef char *LPSTR;
|
|
typedef const char *LPCSTR;
|
|
typedef void *PVOID;
|
|
typedef int BOOL;
|
|
typedef unsigned short WORD;
|
|
typedef void* HWND;
|
|
#define WINAPI __API
|
|
|
|
#include <winuser.h>
|
|
|
|
#endif
|