| 998 | } |
| 999 | |
| 1000 | jlong CallLongMethod(jobject obj, jmethodID methodID, ...) { |
| 1001 | va_list args; |
| 1002 | jlong result; |
| 1003 | va_start(args,methodID); |
| 1004 | result = functions->CallLongMethodV(this,obj,methodID,args); |
| 1005 | va_end(args); |
| 1006 | return result; |
| 1007 | } |
| 1008 | jlong CallLongMethodV(jobject obj, jmethodID methodID, |
| 1009 | va_list args) { |
| 1010 | return functions->CallLongMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected