cheat-engine/underc/sourcecode/include/windows.h

16 lines
315 B
C
Raw Permalink Normal View History

2011-07-04 19:52:19 +00:00
// 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