1
0
Fork 0

Yet another int64_t/uint64_t definition fix. For wine this time.

This commit is contained in:
Christian Jullien 2021-01-02 05:58:46 +01:00
parent 2633c30fb4
commit c9fe8fe470
1 changed files with 4 additions and 3 deletions

View File

@ -20,9 +20,10 @@ typedef signed int int32_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
#if defined(__LP64__) \
&& !defined(__FreeBSD__) \
&& !(defined(__NetBSD__) && defined(__aarch64__))
#if defined(_WIN32) \
|| (defined(__LP64__) \
&& !defined(__FreeBSD__) \
&& !(defined(__NetBSD__) && defined(__aarch64__)))
typedef signed __INT64_TYPE__ int64_t;
typedef unsigned __INT64_TYPE__ uint64_t;
#endif