JavaOpenCL64

This commit is contained in:
2026-08-07 19:33:10 +08:00
commit aedd643d35
278 changed files with 25848 additions and 0 deletions
@@ -0,0 +1,11 @@
package club.doki7.ffm.library;
import club.doki7.ffm.RawFunctionLoader;
public sealed interface ISharedLibrary extends RawFunctionLoader, AutoCloseable permits
JavaSystemLibrary,
UnixLibrary,
WindowsLibrary
{
@Override void close();
}