UnsatisfiedLinkError when trying to use JOGL in an Eclipse plugin
Posted by
asarium on
Jul 18, 2011; 11:56am
URL: https://forum.jogamp.org/UnsatisfiedLinkError-when-trying-to-use-JOGL-in-an-Eclipse-plugin-tp3178913.html
Hello everyone,
I'm trying to create an Eclipse plug-in which should use an OpenGL display to display something. Now when I try to load the native library in the plug-in activator using System.load() I get the following error:
java.lang.UnsatisfiedLinkError: F:\[...]\os\win32\x86\nativewindow_awt.dll: Die angegebene Prozedur wurde nicht gefunden
Which corresponds to the English message "The specified procedure could not be found". Using Dependency Walker I checked the dependencies of the DLL and it yielded a dependency to "jawt.dll" as the only non standard DLL. Now if I try to load this DLL before I load the nativewindow DLL I get the same error just with the changed path to the other DLL so I think that the real problem is the JAWT DLL and not the nativewindow DLL.
Did anyone encounter this error before or does anyone have a working JOGL eclipse plug-in that I could add as a dependency?
Thank you for your help
Regards,
asarium