| 1032 | } |
| 1033 | |
| 1034 | jdouble CallDoubleMethod(jobject obj, jmethodID methodID, ...) { |
| 1035 | va_list args; |
| 1036 | jdouble result; |
| 1037 | va_start(args,methodID); |
| 1038 | result = functions->CallDoubleMethodV(this,obj,methodID,args); |
| 1039 | va_end(args); |
| 1040 | return result; |
| 1041 | } |
| 1042 | jdouble CallDoubleMethodV(jobject obj, jmethodID methodID, |
| 1043 | va_list args) { |
| 1044 | return functions->CallDoubleMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected