mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 01:24:11 +01:00
[native] Add extra definitions needed for D3DCompiler
This commit is contained in:
parent
91bdc8d06c
commit
2f3b3e64b4
@ -96,7 +96,18 @@ typedef HANDLE HWND;
|
||||
typedef HANDLE HKEY;
|
||||
typedef DWORD COLORREF;
|
||||
|
||||
#if INTPTR_MAX == INT64_MAX
|
||||
typedef int64_t INT_PTR;
|
||||
typedef uint64_t UINT_PTR;
|
||||
#else
|
||||
typedef int32_t INT_PTR;
|
||||
typedef uint32_t UINT_PTR;
|
||||
#endif
|
||||
typedef INT_PTR* PINT_PTR;
|
||||
typedef UINT_PTR* PUINT_PTR;
|
||||
|
||||
typedef char* LPSTR;
|
||||
typedef wchar_t* LPWSTR;
|
||||
typedef const char* LPCSTR;
|
||||
typedef const wchar_t* LPCWSTR;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user