blob: 0cc7adcf52bc9501b0a21ceeae276e8280c230d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <jni.h>
#include <assert.h>
JNIEXPORT jint JNICALL
Java_com_jogamp_gluegen_runtime_Platform_getPointerSizeInBitsImpl(JNIEnv *env, jclass _unused) {
return sizeof(void *) * 8;
}
|