Allow defining custom SDL_SINT64_C and SDL_UINT64_C macros (#11315)

This commit is contained in:
Susko3 2024-10-24 01:03:13 +01:00 committed by GitHub
parent 7108291d0b
commit d0cf2c19d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -256,6 +256,8 @@ void *alloca(size_t);
(SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
(SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
#if !(defined(SDL_SINT64_C) && defined(SDL_UINT64_C))
#ifdef SDL_WIKI_DOCUMENTATION_SECTION
/**
@ -298,6 +300,8 @@ void *alloca(size_t);
#define SDL_UINT64_C(c) c ## ULL
#endif
#endif /* !(defined(SDL_SINT64_C) && defined(SDL_UINT64_C)) */
/**
* \name Basic data types
*/