table of contents
- trixie 3.2.10+ds-1
- testing 3.4.0+ds-1
- unstable 3.4.2+ds-1
- experimental 3.4.0+git20260203~8107d5b+ds-1
| SDL_UnregisterApp(3) | SDL3 FUNCTIONS | SDL_UnregisterApp(3) |
NAME¶
SDL_UnregisterApp - Deregister the win32 window class from an SDL_RegisterApp call.
SYNOPSIS¶
#include <SDL3/SDL_main.h>
void SDL_UnregisterApp(void);
DESCRIPTION¶
This can be called to undo the effects of SDL_RegisterApp.
Most applications do not need to, and should not, call this directly; SDL will call it when deinitializing the video subsystem.
It is safe to call this multiple times, as long as every call is eventually paired with a prior call to SDL_RegisterApp. The window class will only be deregistered when the registration counter in SDL_RegisterApp decrements to zero through calls to this function.
THREAD SAFETY¶
This function is not thread safe.
AVAILABILITY¶
This function is available since SDL 3.2.0.
| SDL 3.4.2 | Simple Directmedia Layer |