mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 10:38:30 +02:00
added #ifdef tests for Windows for int64_t, uint64_t
This commit is contained in:
parent
8636981646
commit
a3a640171f
1 changed files with 4 additions and 0 deletions
|
|
@ -3184,6 +3184,10 @@ typedef unsigned long long int uint64_t;
|
|||
typedef long int int32_t;
|
||||
typedef long long int int64_t;
|
||||
typedef unsigned long long int uint64_t;
|
||||
#elif defined(WIN32) && defined(_MSC_VER)
|
||||
typedef long int int32_t;
|
||||
typedef __int64 int64_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
#elif defined(WIN32) && defined(__GNUC__)
|
||||
#include <stdint.h>
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue