table of contents
other versions
- testing 3.2.4+ds-2
- unstable 3.2.4+ds-2
- experimental 3.2.4+git20250228+ds-1
SDL_GetTrayEntries(3) | SDL3 FUNCTIONS | SDL_GetTrayEntries(3) |
NAME¶
SDL_GetTrayEntries - Returns a list of entries in the menu, in order.
HEADER FILE¶
Defined in SDL3/SDL_tray.h
SYNOPSIS¶
#include "SDL3/SDL.h"
const SDL_TrayEntry ** SDL_GetTrayEntries(SDL_TrayMenu *menu, int *count);
FUNCTION PARAMETERS¶
- The menu to get entries from.
- count
- An optional pointer to obtain the number of entries in the menu.
RETURN VALUE¶
(const SDL_TrayEntry ) Returns a NULL-terminated list of entries within the given menu. The pointer becomes invalid when any function that inserts or deletes entries in the menu is called.
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¶
•(3), SDL_RemoveTrayEntry(3), •(3), SDL_InsertTrayEntryAt(3)
SDL 3.2.5 | Simple Directmedia Layer |