Moved prototype for static function out of header file to prevent warnings.
This commit is contained in:
parent
f2763e240d
commit
9afcdd0a14
2 changed files with 2 additions and 1 deletions
|
@ -50,6 +50,8 @@ extern "C" {
|
||||||
|
|
||||||
/* Implemented in audio/android/SDL_androidaudio.c */
|
/* Implemented in audio/android/SDL_androidaudio.c */
|
||||||
extern void Android_RunAudioThread();
|
extern void Android_RunAudioThread();
|
||||||
|
|
||||||
|
static void Android_JNI_ThreadDestroyed(void*);
|
||||||
} // C
|
} // C
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
|
@ -62,7 +62,6 @@ int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seco
|
||||||
|
|
||||||
/* Threads */
|
/* Threads */
|
||||||
#include <jni.h>
|
#include <jni.h>
|
||||||
static void Android_JNI_ThreadDestroyed(void*);
|
|
||||||
JNIEnv *Android_JNI_GetEnv(void);
|
JNIEnv *Android_JNI_GetEnv(void);
|
||||||
int Android_JNI_SetupThread(void);
|
int Android_JNI_SetupThread(void);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue