| 61 | } |
| 62 | |
| 63 | void |
| 64 | throw_exception(JNIEnv* env, const char* name, const char* message = 0) |
| 65 | { |
| 66 | jclass throwable = env->FindClass(name); |
| 67 | |
| 68 | if (throwable != 0) |
| 69 | env->ThrowNew(throwable, message); |
| 70 | } |
| 71 | |
| 72 | void |
| 73 | delete_argv(JNIEnv*, ACE_TCHAR** argv, jsize len) |
no outgoing calls
no test coverage detected