Yet another int64_t/uint64_t definition fix. For wine this time.
This commit is contained in:
parent
2633c30fb4
commit
c9fe8fe470
1 changed files with 4 additions and 3 deletions
|
@ -20,9 +20,10 @@ typedef signed int int32_t;
|
||||||
typedef unsigned char uint8_t;
|
typedef unsigned char uint8_t;
|
||||||
typedef unsigned short int uint16_t;
|
typedef unsigned short int uint16_t;
|
||||||
typedef unsigned int uint32_t;
|
typedef unsigned int uint32_t;
|
||||||
#if defined(__LP64__) \
|
#if defined(_WIN32) \
|
||||||
|
|| (defined(__LP64__) \
|
||||||
&& !defined(__FreeBSD__) \
|
&& !defined(__FreeBSD__) \
|
||||||
&& !(defined(__NetBSD__) && defined(__aarch64__))
|
&& !(defined(__NetBSD__) && defined(__aarch64__)))
|
||||||
typedef signed __INT64_TYPE__ int64_t;
|
typedef signed __INT64_TYPE__ int64_t;
|
||||||
typedef unsigned __INT64_TYPE__ uint64_t;
|
typedef unsigned __INT64_TYPE__ uint64_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue