| 225 | |
| 226 | template<typename ... Args> |
| 227 | void CallAppFail(jclass clazz, jmethodID methodID, Args ... args) { |
| 228 | m_env->CallStaticVoidMethod(clazz, methodID, args...); |
| 229 | } |
| 230 | |
| 231 | template<typename ... Args> |
| 232 | jint CallStaticIntMethod(jclass clazz, jmethodID methodID, Args ... args) { |
nothing calls this directly
no test coverage detected