Scroll to navigation

SDL_SetWindowIcon(3) SDL3 FUNCTIONS SDL_SetWindowIcon(3)

NAME

SDL_SetWindowIcon - Set the icon for a window.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon);

FUNCTION PARAMETERS

the window to change
an SDL_Surface
structure containing the icon for the window

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.0 SDL