Skip to content

Instantly share code, notes, and snippets.

@traffisco
traffisco / gist:dad4fc0d9cf067ce3e55e161910a07fe
Created July 2, 2024 07:57 — forked from zhangyoufu/gist:5814814
JNIEnv functions table, helpful when reverse engineering JNI
#include <stdio.h>
#include <stdarg.h>
#include <stddef.h>
typedef int jint;
typedef int jclass;
typedef int jobject;
typedef int jmethodID;
typedef int jfieldID;
typedef int JNIEnv;