table of contents
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"
extern SDL_DECLSPEC const SDL_TrayEntry **SDLCALL SDL_GetTrayEntries(SDL_TrayMenu *menu, int *size);
FUNCTION PARAMETERS¶
- The menu to get entries from.
- size
- 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.0 | Simple Directmedia Layer |