SDL_GetTrayMenu - Gets a previously created tray menu.
Contents
Availability
This function is available since SDL 3.2.0.
Description
You should have called SDL_CreateTrayMenu() on the tray object. This function allows you to fetch it
again later.
This function does the same thing as SDL_GetTraySubmenu(), except that it takes a SDL_Tray instead of a
SDL_TrayEntry.
A menu does not need to be destroyed; it will be destroyed with the tray.
Function Parameters
tray the tray entry to bind the menu to.
Name
SDL_GetTrayMenu - Gets a previously created tray menu.
Return Value
Returns the newly created menu.
See Also
SDL_CreateTray(3), SDL_CreateTrayMenu(3) Simple Directmedia Layer SDL 3.2.20 SDL_GetTrayMenu(3)
Synopsis
#include<SDL3/SDL_tray.h>SDL_TrayMenu*SDL_GetTrayMenu(SDL_Tray*tray);
Thread Safety
This function should be called on the thread that created the tray.
