mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
include: Fix alignment for INT64/UINT64 in 32-bit code.
This commit is contained in:
parent
b90676ac73
commit
0c88b053da
@ -25,6 +25,10 @@
|
|||||||
|
|
||||||
#if !defined(_WIN32) || defined(__WIDL__)
|
#if !defined(_WIN32) || defined(__WIDL__)
|
||||||
|
|
||||||
|
# ifdef __GNUC__
|
||||||
|
# define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
|
||||||
|
# endif
|
||||||
|
|
||||||
/* HRESULT */
|
/* HRESULT */
|
||||||
typedef int HRESULT;
|
typedef int HRESULT;
|
||||||
# define SUCCEEDED(hr) ((HRESULT)(hr) >= 0)
|
# define SUCCEEDED(hr) ((HRESULT)(hr) >= 0)
|
||||||
@ -64,8 +68,8 @@ typedef unsigned int UINT32;
|
|||||||
typedef long INT64;
|
typedef long INT64;
|
||||||
typedef unsigned long UINT64;
|
typedef unsigned long UINT64;
|
||||||
# else
|
# else
|
||||||
typedef long long INT64;
|
typedef long long DECLSPEC_ALIGN(8) INT64;
|
||||||
typedef unsigned long long UINT64;
|
typedef unsigned long long DECLSPEC_ALIGN(8) UINT64;
|
||||||
# endif
|
# endif
|
||||||
typedef long LONG_PTR;
|
typedef long LONG_PTR;
|
||||||
typedef unsigned long ULONG_PTR;
|
typedef unsigned long ULONG_PTR;
|
||||||
|
Loading…
Reference in New Issue
Block a user