Function SDL_GetTrayMenu

pub unsafe extern "C" fn SDL_GetTrayMenu(
    tray: *mut SDL_Tray,
) -> *mut SDL_TrayMenu
Available on crate feature dep_sdl3 only.
Expand description

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.

§Parameters

  • tray: the tray entry to bind the menu to.

§Return value

Returns the newly created menu.

§Thread safety

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

§Availability

This function is available since SDL 3.2.0.

§See also