Currently we are trying to adapte dokany-java (written by @jhult) repository to our project. Our goal is to use dokany virtual drive but the problem is library is not initializing in our project and also repository's example main is not working (MountMemoryFS).
The error is
java.lang.UnsatisfiedLinkError: Error looking up function 'DokanMapStandardToGenericAccess': The specified procedure could not be found.
at com.sun.jna.Function.<init>(Function.java:245)
at com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:566)
at com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:542)
at com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:528)
at com.sun.jna.Native.register(Native.java:1770)
at com.sun.jna.Native.register(Native.java:1643)
at com.sun.jna.Native.register(Native.java:1360)
at com.dokany.java.NativeMethods.<clinit>(NativeMethods.java:28)
at com.dokany.java.DokanyDriver.start(DokanyDriver.java:70)
at com.dokany.java.examples.memoryfs.MountMemoryFS.main(MountMemoryFS.java:46)
Dokany version : 1.5.1 Java version : 8
How can we solve this problem?