| 930 | } |
| 931 | |
| 932 | jbyte CallByteMethod(jobject obj, jmethodID methodID, ...) { |
| 933 | va_list args; |
| 934 | jbyte result; |
| 935 | va_start(args,methodID); |
| 936 | result = functions->CallByteMethodV(this,obj,methodID,args); |
| 937 | va_end(args); |
| 938 | return result; |
| 939 | } |
| 940 | jbyte CallByteMethodV(jobject obj, jmethodID methodID, |
| 941 | va_list args) { |
| 942 | return functions->CallByteMethodV(this,obj,methodID,args); |
nothing calls this directly
no test coverage detected