| 912 | } |
| 913 | |
| 914 | jboolean CallBooleanMethod(jobject obj, |
| 915 | jmethodID methodID, ...) { |
| 916 | va_list args; |
| 917 | jboolean result; |
| 918 | va_start(args,methodID); |
| 919 | result = functions->CallBooleanMethodV(this,obj,methodID,args); |
| 920 | va_end(args); |
| 921 | return result; |
| 922 | } |
| 923 | jboolean CallBooleanMethodV(jobject obj, jmethodID methodID, |
| 924 | va_list args) { |
| 925 | return functions->CallBooleanMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected