| 219 | |
| 220 | template<typename ... Args> |
| 221 | void CallStaticVoidMethod(jclass clazz, jmethodID methodID, Args ... args) { |
| 222 | m_env->CallStaticVoidMethod(clazz, methodID, args...); |
| 223 | CheckForJavaException(); |
| 224 | } |
| 225 | |
| 226 | template<typename ... Args> |
| 227 | void CallAppFail(jclass clazz, jmethodID methodID, Args ... args) { |
no outgoing calls