diff options
-rw-r--r-- | CNativeCode/jawt_dummy.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/CNativeCode/jawt_dummy.c b/CNativeCode/jawt_dummy.c new file mode 100644 index 0000000..8b71a3d --- /dev/null +++ b/CNativeCode/jawt_dummy.c @@ -0,0 +1,26 @@ +/*---------------------------------------------------------------------- + * JNI DUMMY routines for handle access via JAWT + */ + +#include <stdio.h> +#include <stdlib.h> +#include <stdarg.h> + +#include <jni.h> + +#include "jnitools.h" + + +jboolean LIBAPIENTRY +jawt_init (char* jawtLibName) +{ + (void) jawtLibName; + return JNI_FALSE; +} + +void LIBAPIENTRY +jawt_unload () +{ + +} + |