diff options
author | Sven Gothel <[email protected]> | 2003-06-27 20:03:30 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2003-06-27 20:03:30 +0000 |
commit | 45ac7166146925e210836056a695941b5c33289c (patch) | |
tree | 674ff7cedab6408b18fb3aba834d71de949bd170 | |
parent | b6fed858708168bdfebe6f37496d7abaff9b7e2b (diff) |
adding jawt dummy functions for pre-jawt jdk ..
-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 () +{ + +} + |