12 lines
266 B
Java
12 lines
266 B
Java
package club.doki7.ffm.library;
|
|
|
|
import club.doki7.ffm.RawFunctionLoader;
|
|
|
|
public sealed interface ISharedLibrary extends RawFunctionLoader, AutoCloseable permits
|
|
JavaSystemLibrary,
|
|
UnixLibrary,
|
|
WindowsLibrary
|
|
{
|
|
@Override void close();
|
|
}
|