Convert to using jdk.foreign rather than jni.
authorNot Zed <notzed@gmail.com>
Fri, 17 Jun 2022 09:42:03 +0000 (19:12 +0930)
committerNot Zed <notzed@gmail.com>
Fri, 17 Jun 2022 09:42:03 +0000 (19:12 +0930)
commit26b85e106e06296e8b67b4536a0cc5f792c4149e
tree76e9b6bbeca9e1abe0cb5ba0a2e43a5b20f97e5c
parent0b1782ec4df69c555018af29593d1f4faceb8e4c
Convert to using jdk.foreign rather than jni.
42 files changed:
Makefile
README
config.make.in
java.make
nbproject/project.properties
src/notzed.nativez/bin/export-api [new file with mode: 0755]
src/notzed.nativez/bin/export-defines [new file with mode: 0755]
src/notzed.nativez/bin/generate-api [new file with mode: 0755]
src/notzed.nativez/classes/au/notzed/nativez/Array.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/ByteArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/DoubleArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/FloatArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/Frame.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/FunctionPointer.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/HandleArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/IntArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/LongArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/Memory.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/Native.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/NativeZ.java [deleted file]
src/notzed.nativez/classes/au/notzed/nativez/Pointer.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/PointerArray.java [new file with mode: 0644]
src/notzed.nativez/classes/au/notzed/nativez/ShortArray.java [new file with mode: 0644]
src/notzed.nativez/classes/module-info.java
src/notzed.nativez/jni/jni.make [deleted file]
src/notzed.nativez/jni/nativez-gen [deleted file]
src/notzed.nativez/jni/nativez-jni.c [deleted file]
src/notzed.nativez/jni/nativez-jni.def [deleted file]
src/notzed.nativez/jni/nativez-linux.c [deleted file]
src/notzed.nativez/jni/nativez-windows.c [deleted file]
src/notzed.nativez/jni/nativez.h [deleted file]
src/notzed.nativez/lib/api.pm [new file with mode: 0644]
src/notzed.nativez/lib/code.api [new file with mode: 0644]
src/notzed.nativez/lib/code.pm [new file with mode: 0644]
src/notzed.nativez/lib/config.pm [new file with mode: 0644]
src/notzed.nativez/lib/method.pm [new file with mode: 0644]
src/notzed.nativez/lib/tokenise.pm [new file with mode: 0644]
src/notzed.nativez/lib/types.api [new file with mode: 0644]
src/notzed.nativez/native/export.cc [new file with mode: 0644]
src/notzed.nativez/native/list.h [new file with mode: 0644]
src/notzed.nativez/native/native.make [new file with mode: 0644]
src/notzed.nativez/native/tree-codes.c [new file with mode: 0644]