2023-10-10 13:38:22 -06:00
|
|
|
/*
|
|
|
|
Simple DiretMedia Layer
|
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file SDL_properties.h
|
|
|
|
*
|
|
|
|
* \brief Header file for SDL properties.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SDL_properties_h_
|
|
|
|
#define SDL_properties_h_
|
|
|
|
|
|
|
|
#include <SDL3/SDL_begin_code.h>
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SDL properties ID
|
|
|
|
*/
|
|
|
|
typedef Uint32 SDL_PropertiesID;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a set of properties
|
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* All properties are automatically destroyed when SDL_Quit() is called.
|
|
|
|
*
|
2023-10-12 13:20:53 -06:00
|
|
|
* \returns an ID for a new set of properties, or 0 on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
2023-10-10 13:38:22 -06:00
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_DestroyProperties
|
|
|
|
*/
|
|
|
|
extern DECLSPEC SDL_PropertiesID SDLCALL SDL_CreateProperties(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lock a set of properties
|
|
|
|
*
|
2023-10-12 13:20:53 -06:00
|
|
|
* Obtain a multi-threaded lock for these properties. Other threads will wait
|
|
|
|
* while trying to lock these properties until they are unlocked. Properties
|
|
|
|
* must be unlocked before they are destroyed.
|
2023-10-10 13:38:22 -06:00
|
|
|
*
|
2023-10-12 13:20:53 -06:00
|
|
|
* The lock is automatically taken when setting individual properties, this
|
|
|
|
* function is only needed when you want to set several properties atomically
|
|
|
|
* or want to guarantee that properties being queried aren't freed in another
|
|
|
|
* thread.
|
2023-10-10 13:38:22 -06:00
|
|
|
*
|
|
|
|
* \param props the properties to lock
|
|
|
|
* \returns 0 on success or a negative error code on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_UnlockProperties
|
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_LockProperties(SDL_PropertiesID props);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unlock a set of properties
|
|
|
|
*
|
|
|
|
* \param props the properties to unlock
|
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_LockProperties
|
|
|
|
*/
|
|
|
|
extern DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a property on a set of properties
|
|
|
|
*
|
|
|
|
* \param props the properties to modify
|
|
|
|
* \param name the name of the property to modify
|
|
|
|
* \param value the new value of the property, or NULL to delete the property
|
2023-10-12 13:20:53 -06:00
|
|
|
* \param cleanup the function to call when this property is deleted, or NULL
|
|
|
|
* if no cleanup is necessary
|
2023-10-10 13:38:22 -06:00
|
|
|
* \param userdata a pointer that is passed to the cleanup function
|
|
|
|
* \returns 0 on success or a negative error code on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_GetProperty
|
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_SetProperty(SDL_PropertiesID props, const char *name, void *value, void (SDLCALL *cleanup)(void *userdata, void *value), void *userdata);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a property on a set of properties
|
|
|
|
*
|
|
|
|
* \param props the properties to query
|
|
|
|
* \param name the name of the property to query
|
|
|
|
* \returns the value of the property, or NULL if it is not set.
|
|
|
|
*
|
2023-10-18 23:14:13 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread, although
|
|
|
|
* the data returned is not protected and could potentially be
|
2023-10-18 23:18:12 -06:00
|
|
|
* freed if you call SDL_SetProperty() or SDL_ClearProperty() on
|
|
|
|
* these properties from another thread. If you need to avoid
|
|
|
|
* this, use SDL_LockProperties() and SDL_UnlockProperties().
|
2023-10-18 23:13:33 -06:00
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_SetProperty
|
|
|
|
*/
|
|
|
|
extern DECLSPEC void *SDLCALL SDL_GetProperty(SDL_PropertiesID props, const char *name);
|
|
|
|
|
2023-10-11 17:59:51 -06:00
|
|
|
/**
|
|
|
|
* Clear a property on a set of properties
|
|
|
|
*
|
|
|
|
* \param props the properties to modify
|
|
|
|
* \param name the name of the property to clear
|
|
|
|
* \returns 0 on success or a negative error code on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2023-10-18 23:13:33 -06:00
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
*
|
2023-10-11 17:59:51 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_GetProperty
|
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_ClearProperty(SDL_PropertiesID props, const char *name);
|
|
|
|
|
2023-10-10 13:38:22 -06:00
|
|
|
/**
|
|
|
|
* Destroy a set of properties
|
|
|
|
*
|
2023-10-12 13:20:53 -06:00
|
|
|
* All properties are deleted and their cleanup functions will be called, if
|
2023-10-18 23:19:50 -06:00
|
|
|
* any.
|
2023-10-10 13:38:22 -06:00
|
|
|
*
|
|
|
|
* \param props the properties to destroy
|
|
|
|
*
|
2023-10-18 23:18:12 -06:00
|
|
|
* \threadsafety This function should not be called while these properties are
|
|
|
|
* locked or other threads might be setting or getting values
|
|
|
|
* from these properties.
|
2023-10-18 23:13:33 -06:00
|
|
|
*
|
2023-10-10 13:38:22 -06:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_CreateProperties
|
|
|
|
*/
|
|
|
|
extern DECLSPEC void SDLCALL SDL_DestroyProperties(SDL_PropertiesID props);
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#include <SDL3/SDL_close_code.h>
|
|
|
|
|
|
|
|
#endif /* SDL_properties_h_ */
|