Added a typedef for __int64 which is a builtin Visual C++ type
Added a typedef for PUINT
This commit is contained in:
parent
20d3f10b31
commit
f07c1633ac
|
@ -115,6 +115,7 @@ typedef DWORD LCID;
|
|||
typedef WORD LANGID;
|
||||
typedef DWORD LCTYPE;
|
||||
typedef float FLOAT;
|
||||
typedef long long __int64;
|
||||
|
||||
/* Pointers types. These are the same for emulator and library. */
|
||||
/* winnt types */
|
||||
|
@ -277,6 +278,7 @@ typedef LPCSTR LPCTSTR;
|
|||
|
||||
DECL_WINELIB_TYPE(INT)
|
||||
DECL_WINELIB_TYPE(LPINT)
|
||||
DECL_WINELIB_TYPE(PUINT)
|
||||
DECL_WINELIB_TYPE(LPUINT)
|
||||
DECL_WINELIB_TYPE(UINT)
|
||||
DECL_WINELIB_TYPE(BOOL)
|
||||
|
|
Loading…
Reference in New Issue