Show a system notification with normal priority.
Defined in <SDL3/SDL_notification.h>
SDL_NotificationID SDL_ShowNotification(const char *title, const char *message, SDL_Surface *image, SDL_NotificationAction *actions, int num_actions);| const char * | title | UTF-8 title text, required. |
| const char * | message | UTF-8 message text, may be NULL. |
| SDL_Surface * | image | The image associated with this notification, may be NULL. |
| SDL_NotificationAction * | actions | An array of actions to attach to the notification, may be NULL. |
| int | num_actions | The number of actions in the actions array. |
(SDL_NotificationID) Returns A non-zero SDL_NotificationID on success or 0 on failure; call SDL_GetError() for more information.
This function is available since SDL 3.6.0.