SDL_SendAndroidMessage

Function SDL_SendAndroidMessage 

Source
pub unsafe extern "C" fn SDL_SendAndroidMessage(
    command: Uint32,
    param: c_int,
) -> bool
Expand description

Send a user command to SDLActivity.

Override “boolean onUnhandledMessage(Message msg)” to handle the message.

§Parameters

  • command: user command that must be greater or equal to 0x8000.
  • param: user parameter.

§Return value

Returns true on success or false on failure; call SDL_GetError() for more information.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.