Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ran gendynapi.pl after new (android-only) api additions.
  • Loading branch information
sezero committed Oct 1, 2020
1 parent 0467e33 commit 883509f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dynapi/SDL_dynapi_overrides.h
Expand Up @@ -765,3 +765,5 @@
#define SDL_trunc SDL_trunc_REAL
#define SDL_truncf SDL_truncf_REAL
#define SDL_GetPreferredLocales SDL_GetPreferredLocales_REAL
#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_REAL
#define SDL_AndroidOpenURL SDL_AndroidOpenURL_REAL
4 changes: 4 additions & 0 deletions src/dynapi/SDL_dynapi_procs.h
Expand Up @@ -824,3 +824,7 @@ SDL_DYNAPI_PROC(void,SDL_Metal_GetDrawableSize,(SDL_Window *a, int *b, int *c),(
SDL_DYNAPI_PROC(double,SDL_trunc,(double a),(a),return)
SDL_DYNAPI_PROC(float,SDL_truncf,(float a),(a),return)
SDL_DYNAPI_PROC(SDL_Locale *,SDL_GetPreferredLocales,(void),(),return)
#ifdef __ANDROID__
SDL_DYNAPI_PROC(SDL_bool,SDL_AndroidRequestPermission,(const char *a),(a),return)
SDL_DYNAPI_PROC(int,SDL_AndroidOpenURL,(const char *a),(a),return)
#endif

0 comments on commit 883509f

Please sign in to comment.