Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
38 lines (27 loc) · 1.03 KB

SDL_android_main.c

File metadata and controls

38 lines (27 loc) · 1.03 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "SDL_config.h"
#ifdef __ANDROID__
/* Include the SDL main definition header */
#include "SDL_main.h"
/*******************************************************************************
Functions called by JNI
*******************************************************************************/
#include <jni.h>
// Called before SDL_main() to initialize JNI bindings in SDL library
Jul 22, 2013
Jul 22, 2013
15
extern void SDL_Android_Init(JNIEnv* env, jclass cls);
16
17
// Start up the SDL app
Jul 22, 2013
Jul 22, 2013
18
void Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject obj)
19
20
21
22
{
/* This interface could expand with ABI negotiation, calbacks, etc. */
SDL_Android_Init(env, cls);
Jun 6, 2013
Jun 6, 2013
23
24
SDL_SetMainReady();
25
26
27
/* Run the application code! */
int status;
char *argv[2];
Jul 15, 2013
Jul 15, 2013
28
argv[0] = SDL_strdup("SDL_app");
29
30
31
32
33
34
35
36
37
38
argv[1] = NULL;
status = SDL_main(1, argv);
/* Do not issue an exit or the whole application will terminate instead of just the SDL thread */
//exit(status);
}
#endif /* __ANDROID__ */
/* vi: set ts=4 sw=4 expandtab: */