mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
26 lines
416 B
C
26 lines
416 B
C
#ifndef JNI_UTIL
|
|
#define JNI_UTIL
|
|
|
|
#undef JNIEXPORT
|
|
#ifdef __MINGW32__
|
|
# define JNIEXPORT __declspec(dllexport)
|
|
#else
|
|
# define JNIEXPORT __attribute__ ((visibility("default")))
|
|
#endif
|
|
|
|
namespace {
|
|
|
|
inline void
|
|
throwNew(JNIEnv* e, const char* class_, const char* message)
|
|
{
|
|
jclass c = e->FindClass(class_);
|
|
if (c) {
|
|
e->ThrowNew(c, message);
|
|
e->DeleteLocalRef(c);
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#endif//JNI_UTIL
|