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

View file

@ -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(__FreeBSD__) \ || (defined(__LP64__) \
&& !(defined(__NetBSD__) && defined(__aarch64__)) && !defined(__FreeBSD__) \
&& !(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