Added the uint64_t type as a typedef. Will have to do some cleanup in file as it is a mess...

This commit is contained in:
anschrammh 2023-04-05 08:19:08 +02:00
parent 4da41970a6
commit 9f7e516984

View File

@ -77,11 +77,36 @@ typedef int int32_t;
typedef unsigned int uint32_t; typedef unsigned int uint32_t;
#endif #endif
#ifdef int64
#undef int64
#endif
typedef long long int64;
#ifdef int64_t
#undef int64_t
#endif
typedef long long int64_t;
#ifdef uint64
#undef uint64
#endif
typedef unsigned long long uint64;
#ifdef uint64_t
#undef uint64_t
#endif
typedef unsigned long long uint64_t;
#ifdef int32 #ifdef int32
#undef int32 #undef int32
#endif #endif
typedef int int32; typedef int int32;
#ifdef int32_t
#undef int32_t
#endif
typedef int int32_t;
#ifdef uint32 #ifdef uint32
#undef uint32 #undef uint32
#endif #endif