#include <jni.h>
Collaboration diagram for JavaVM_:
Public Methods | |
jint | DestroyJavaVM () |
jint | AttachCurrentThread (void **penv, void *args) |
jint | DetachCurrentThread () |
jint | GetEnv (void **penv, jint version) |
Public Attributes | |
const struct JNIInvokeInterface_* | functions |
|
Definition at line 1889 of file jni.h. 01889 { 01890 return functions->AttachCurrentThread(this, penv, args); 01891 } |
|
Definition at line 1886 of file jni.h. 01886 { 01887 return functions->DestroyJavaVM(this); 01888 } |
|
Definition at line 1892 of file jni.h. 01892 { 01893 return functions->DetachCurrentThread(this); 01894 } |
|
Definition at line 1896 of file jni.h. Referenced by JVM_OnLoad().
01896 { 01897 return functions->GetEnv(this, penv, version); 01898 } |
|
|