/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This file is part of SableVM. * * See the file "LICENSE" for Copyright information and the * * terms and conditions for copying, distribution and * * modification of SableVM. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef SVM_INVOKE_INTERFACE_H #define SVM_INVOKE_INTERFACE_H static JNIEXPORT jint JNICALL DestroyJavaVM (JavaVM *vm); static JNIEXPORT jint JNICALL AttachCurrentThread (JavaVM *vm, void **penv, void *args); static JNIEXPORT jint JNICALL DetachCurrentThread (JavaVM *vm); static JNIEXPORT jint JNICALL GetEnv (JavaVM *vm, void **penv, jint interface_id); #endif /* NOT SVM_INVOKE_INTERFACE_H */