table of contents
Sint64(3type) | SDL3 DATATYPES | Sint64(3type) |
NAME¶
Sint64 - A signed 64-bit integer type.
HEADER FILE¶
Defined in SDL3/SDL_stdinc.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef int64_t Sint64; #define SDL_MAX_SINT64 SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* 9223372036854775807 */ #define SDL_MIN_SINT64 ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* -9223372036854775808 */
AVAILABILITY¶
This macro is available since SDL 3.1.3.
SEE ALSO¶
•(3), SDL_SINT64_C(3)
SDL 3.1.6 | Simple Directmedia Layer |