Function SDL_GetTraySubmenu

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

Gets a previously created tray entry submenu.

You should have called SDL_CreateTraySubmenu() on the entry object. This function allows you to fetch it again later.

This function does the same thing as SDL_GetTrayMenu(), except that it takes a SDL_TrayEntry instead of a SDL_Tray.

A menu does not need to be destroyed; it will be destroyed with the tray.

§Parameters

  • entry: 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