< H1 > 1. Problem description < H1 > JNA technology is used because work requires calling DLL, in the SDK provided by a third party. The development steps and the use of JNA have been familiar, and the development task has been completed, but there ha...
public class CalProcess { public interface CLibrary extends Library { CLibrary INSTANCE = (CLibrary) Native.loadLibrary((Platform.isWindows() ? "CalProcess" : "cal_process"), CLibrary.class); ...