# SDL_AtomicDecRef Decrement an atomic variable used as a reference count. ## Header File Defined in [](https://github.com/libsdl-org/SDL/blob/main/include/SDL3/SDL_atomic.h) ## Syntax ```c #define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1) ``` ## Macro Parameters | | | | ----- | ------------------------------------------------------------ | | **a** | a pointer to an [SDL_AtomicInt](SDL_AtomicInt) to decrement. | ## Return Value Returns true if the variable reached zero after decrementing, false otherwise. ## Remarks ***Note: If you don't know what this macro is for, you shouldn't use it!*** ## Thread Safety It is safe to call this macro from any thread. ## Version This macro is available since SDL 3.2.0. ## See Also - [SDL_AtomicIncRef](SDL_AtomicIncRef) ---- [CategoryAPI](CategoryAPI), [CategoryAPIMacro](CategoryAPIMacro), [CategoryAtomic](CategoryAtomic)