diff options
Diffstat (limited to 'archive/src/main/native/sieb.h')
-rw-r--r-- | archive/src/main/native/sieb.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/archive/src/main/native/sieb.h b/archive/src/main/native/sieb.h new file mode 100644 index 0000000..536c806 --- /dev/null +++ b/archive/src/main/native/sieb.h @@ -0,0 +1,22 @@ +#if !defined(sieb_h) +#define sieb_h + + +#include "JNIHelp.h" +#include "jni.h" + + + +void throwNewOutOfMemoryError (JNIEnv * env, const char *message); +void throwNewIllegalArgumentException (JNIEnv * env, const char *message); +void throwNewIllegalStateException (JNIEnv * env, const char *message); + + +void * sieb_malloc (JNIEnv * env, size_t byteCnt); +void sieb_free (JNIEnv * env, void * adr); + +void sieb_convertToPlatform (char *path); + + + +#endif /* sieb_h */ |