table of contents
Sint16(3type) | SDL3 DATATYPES | Sint16(3type) |
NAME¶
Sint16 - A signed 16-bit integer type.
HEADER FILE¶
Defined in SDL3/SDL_stdinc.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef int16_t Sint16; #define SDL_MAX_SINT16 ((Sint16)0x7FFF) /* 32767 */ #define SDL_MIN_SINT16 ((Sint16)(~0x7FFF)) /* -32768 */
AVAILABILITY¶
This macro is available since SDL 3.1.3.
SDL 3.1.6 | Simple Directmedia Layer |