table of contents
other versions
- trixie 3.2.10+ds-1
 - testing 3.2.26+ds-1
 - unstable 3.2.26+ds-2
 - experimental 3.3.2+git20251103~dc5b136+ds-1
 
| SDL_RequestAndroidPermissionCallback(3type) | SDL3 DATATYPES | SDL_RequestAndroidPermissionCallback(3type) | 
NAME¶
SDL_RequestAndroidPermissionCallback - Callback that presents a
    response from a SDL_RequestAndroidPermission
  
   call.
HEADER FILE¶
Defined in SDL3/SDL_system.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef void (SDLCALL *SDL_RequestAndroidPermissionCallback)(void *userdata, const char *permission, bool granted);
FUNCTION PARAMETERS¶
- userdata
 - an app-controlled pointer that is passed to the callback.
 - permission
 - the Android-specific permission name that was requested.
 - granted
 - true if permission is granted, false if denied.
 
AVAILABILITY¶
This datatype is available since SDL 3.2.0.
SEE ALSO¶
| SDL 3.2.10 | Simple Directmedia Layer |