Android: Fixed compile warning about a missing prototype (thanks, Sylvain!).

Fixes Bugzilla #3351.
This commit is contained in:
Philipp Wiesemann 2016-07-17 21:42:53 +02:00
parent de5daaad6a
commit 6b1d5f4461
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@
/* Called before SDL_main() to initialize JNI bindings in SDL library */ /* Called before SDL_main() to initialize JNI bindings in SDL library */
extern void SDL_Android_Init(JNIEnv* env, jclass cls); extern void SDL_Android_Init(JNIEnv* env, jclass cls);
/* This prototype is needed to prevent a warning about the missing prototype for global function below */
JNIEXPORT int JNICALL Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject array);
/* Start up the SDL app */ /* Start up the SDL app */
JNIEXPORT int JNICALL Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject array) JNIEXPORT int JNICALL Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject array)
{ {