SDL_GetTrayMenu

Gets a previously created tray menu.

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.

extern (C) nothrow @nogc extern
SDL_GetTrayMenu

Parameters

tray SDL_Tray*

The tray entry to bind the menu to.

Return Value

the newly created menu.

Threadsafety: This function should be called on the thread that created the tray.

See Also

Meta