| 1367 | } |
| 1368 | |
| 1369 | jboolean CallStaticBooleanMethod(jclass clazz, |
| 1370 | jmethodID methodID, ...) { |
| 1371 | va_list args; |
| 1372 | jboolean result; |
| 1373 | va_start(args,methodID); |
| 1374 | result = functions->CallStaticBooleanMethodV(this,clazz,methodID,args); |
| 1375 | va_end(args); |
| 1376 | return result; |
| 1377 | } |
| 1378 | jboolean CallStaticBooleanMethodV(jclass clazz, |
| 1379 | jmethodID methodID, va_list args) { |
| 1380 | return functions->CallStaticBooleanMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected