aboutsummaryrefslogtreecommitdiffstats
path: root/CNativeCode/jawt_dummy.c
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2003-06-27 20:03:30 +0000
committerSven Gothel <[email protected]>2003-06-27 20:03:30 +0000
commit45ac7166146925e210836056a695941b5c33289c (patch)
tree674ff7cedab6408b18fb3aba834d71de949bd170 /CNativeCode/jawt_dummy.c
parentb6fed858708168bdfebe6f37496d7abaff9b7e2b (diff)
adding jawt dummy functions for pre-jawt jdk ..
Diffstat (limited to 'CNativeCode/jawt_dummy.c')
-rw-r--r--CNativeCode/jawt_dummy.c26
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 ()
+{
+
+}
+