| 947 | } |
| 948 | |
| 949 | jchar CallCharMethod(jobject obj, jmethodID methodID, ...) { |
| 950 | va_list args; |
| 951 | jchar result; |
| 952 | va_start(args,methodID); |
| 953 | result = functions->CallCharMethodV(this,obj,methodID,args); |
| 954 | va_end(args); |
| 955 | return result; |
| 956 | } |
| 957 | jchar CallCharMethodV(jobject obj, jmethodID methodID, |
| 958 | va_list args) { |
| 959 | return functions->CallCharMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected