Scroll to navigation

Uint8(3type) SDL3 DATATYPES Uint8(3type)

NAME

Uint8 - An unsigned 8-bit integer type.

HEADER FILE

Defined in SDL3/SDL_stdinc.h

SYNOPSIS

#include "SDL3/SDL.h"
typedef uint8_t Uint8;
#define SDL_MAX_UINT8   ((Uint8)0xFF)           /* 255 */
#define SDL_MIN_UINT8   ((Uint8)0x00)           /* 0 */

AVAILABILITY

This macro is available since SDL 3.1.3.

SDL 3.1.6 Simple Directmedia Layer