1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 * This source file is part of SableVM. * 3 * * 4 * See the file "LICENSE" for the copyright information and for * 5 * the terms and conditions for copying, distribution and * 6 * modification of this source file. * 7 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 8 9 #ifndef SVM_LOCAL_REFS_H 10 #define SVM_LOCAL_REFS_H 11 12 #define _svmm_new_native_local(env,ref) \ 13 _svmh_new_native_local (env, &ref) 14 15 static jint _svmh_new_native_local (_svmt_JNIEnv *env, jobject *pobj); 16 17 #define _svmm_free_native_local(env,ref) \ 18 _svmh_free_native_local (env, &ref) 19 20 static void _svmh_free_native_local (_svmt_JNIEnv *env, jobject *pobj); 21 22 #endif /* NOT SVM_LOCAL_REFS_H */ 23