Scroll to navigation

SDL_AndroidGetJNIEnv(3) SDL3 FUNCTIONS SDL_AndroidGetJNIEnv(3)

NAME

SDL_AndroidGetJNIEnv - Get the Android Java Native Interface Environment of the current thread.

SYNOPSIS

#include "SDL3/SDL.h"
void * SDL_AndroidGetJNIEnv(void);

DESCRIPTION

This is the JNIEnv one needs to access the Java virtual machine from native code, and is needed for many Android APIs to be usable from C.

The prototype of the function in SDL's code actually declare a void* return type, even if the implementation returns a pointer to a JNIEnv. The rationale being that the SDL headers can avoid including jni.h.

RETURN VALUE

Returns a pointer to Java native interface object (JNIEnv) to which the current thread is attached, or 0 on error.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_AndroidGetActivity(3)

SDL 3.1.0 SDL