mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
13 lines
306 B
C
13 lines
306 B
C
#include <stdlib.h>
|
|
|
|
#include <findclass.h>
|
|
|
|
JNIEXPORT jclass JNICALL
|
|
Java_findclass_doit (JNIEnv *env, jclass klass, jstring name)
|
|
{
|
|
const char *buf = (*env)->GetStringUTFChars (env, name, NULL);
|
|
jclass k = (*env)->FindClass (env, buf);
|
|
(*env)->ReleaseStringUTFChars (env, name, buf);
|
|
return k;
|
|
}
|