Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions include/SDL_system.h
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,21 @@ extern DECLSPEC int SDLCALL SDL_GDKGetTaskQueue(XTaskQueueHandle * outTaskQueue)

/* Platform specific functions for Wii U */
#if defined(__WIIU__)

/**
* Preprocessor define for the swkbd API version.
*
* This number should be bumped any time there are changes to the API
* to allow programs to retain source-level compatibility whenever
* changes are made.
*
* For example:
* #if SDL_WIIU_SWKBD_API == 1
* SDL_WiiUSetSWKBDEnabled(SDL_FALSE);
* #endif
*/
# define SDL_WIIU_SWKBD_API 1

typedef enum SDL_WiiUSysWMEventType {
/** Sent before any text input event. */
SDL_WIIU_SYSWM_SWKBD_OK_START_EVENT = 1,
Expand Down