DRAFT |
SDL_AtomicSetPtr
Use this function to set a pointer to a value atomically.
Contents
Syntax
void* SDL_AtomicSetPtr(void** a,
void* v)
Function Parameters
a |
a pointer to a pointer to an atomic variable |
v |
a pointer to the desired value |
Return Value
Returns the previous value of the pointer. green
Returns a pointer to the previous value on success.
green
Code Examples
You can add your code example here
Remarks
You can add useful comments here
