Scroll to navigation

SDL_HasProperty(3) SDL3 FUNCTIONS SDL_HasProperty(3)

NAME

SDL_HasProperty - Return whether a property exists in a set of properties.

SYNOPSIS

#include "SDL3/SDL.h"
SDL_bool SDL_HasProperty(SDL_PropertiesID props, const char *name);

FUNCTION PARAMETERS

the properties to query
the name of the property to query

RETURN VALUE

Returns SDL_TRUE
if the property exists, or

SDL_FALSE
if it doesn't.

THREAD SAFETY

It is safe to call this function from any thread.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_GetPropertyType(3)

SDL 3.1.0 SDL