mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
android: Fixed parameter list in function definitions.
This commit is contained in:
parent
6c0aea4270
commit
189b5851b7
@ -1712,14 +1712,12 @@ int Android_JNI_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *bu
|
|||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void *SDL_AndroidGetJNIEnv()
|
void *SDL_AndroidGetJNIEnv(void)
|
||||||
{
|
{
|
||||||
return Android_JNI_GetEnv();
|
return Android_JNI_GetEnv();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *SDL_AndroidGetActivity(void)
|
||||||
|
|
||||||
void *SDL_AndroidGetActivity()
|
|
||||||
{
|
{
|
||||||
/* See SDL_system.h for caveats on using this function. */
|
/* See SDL_system.h for caveats on using this function. */
|
||||||
|
|
||||||
@ -1736,7 +1734,7 @@ void *SDL_AndroidGetActivity()
|
|||||||
return (*env)->CallStaticObjectMethod(env, mActivityClass, mid);
|
return (*env)->CallStaticObjectMethod(env, mActivityClass, mid);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char * SDL_AndroidGetInternalStoragePath()
|
const char * SDL_AndroidGetInternalStoragePath(void)
|
||||||
{
|
{
|
||||||
static char *s_AndroidInternalFilesPath = NULL;
|
static char *s_AndroidInternalFilesPath = NULL;
|
||||||
|
|
||||||
@ -1783,7 +1781,7 @@ const char * SDL_AndroidGetInternalStoragePath()
|
|||||||
return s_AndroidInternalFilesPath;
|
return s_AndroidInternalFilesPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_AndroidGetExternalStorageState()
|
int SDL_AndroidGetExternalStorageState(void)
|
||||||
{
|
{
|
||||||
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
|
struct LocalReferenceHolder refs = LocalReferenceHolder_Setup(__FUNCTION__);
|
||||||
jmethodID mid;
|
jmethodID mid;
|
||||||
@ -1822,7 +1820,7 @@ int SDL_AndroidGetExternalStorageState()
|
|||||||
return stateFlags;
|
return stateFlags;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char * SDL_AndroidGetExternalStoragePath()
|
const char * SDL_AndroidGetExternalStoragePath(void)
|
||||||
{
|
{
|
||||||
static char *s_AndroidExternalFilesPath = NULL;
|
static char *s_AndroidExternalFilesPath = NULL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user