/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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_NEW_INSTANCE_H #define SVM_NEW_INSTANCE_H /* ---------------------------------------------------------------------- _svmh_new_object_instance ---------------------------------------------------------------------- */ #define _svmm_new_object_instance(env, class_info, instance) \ _svmh_new_object_instance(env, class_info, &instance) static jint _svmh_new_object_instance (_svmt_JNIEnv *env, _svmt_class_info *class_info, _svmt_object_instance **pinstance); #endif /* NOT SVM_NEW_INSTANCE_H */