| 981 | } |
| 982 | |
| 983 | jint CallIntMethod(jobject obj, jmethodID methodID, ...) { |
| 984 | va_list args; |
| 985 | jint result; |
| 986 | va_start(args,methodID); |
| 987 | result = functions->CallIntMethodV(this,obj,methodID,args); |
| 988 | va_end(args); |
| 989 | return result; |
| 990 | } |
| 991 | jint CallIntMethodV(jobject obj, jmethodID methodID, |
| 992 | va_list args) { |
| 993 | return functions->CallIntMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected