Hello. So I am trying to initialize the SoundEngine3D object. I am able to do this succesfully with the Linux version (release version 1.1.0). The code snip below is what I use to do this.
1 2 3 4 5
| AudioSystem3D.init(); dev = AudioSystem3D.openDevice(null); ctx = AudioSystem3D.createContext(dev); AudioSystem3D.makeContextCurrent(ctx); |
The above code works fine under Linux; however, for Windows XP, I get the following exception.
1 2 3
| Exception in thread "main" java.lang.RuntimeException: Can not get proc address for method "alcCaptureCloseDevice": Coldn't set value of field "_addressof_alcCaptureCloseDevice" in class net.java.games.joal.imp.ALCProcAddressTable |
Note, for windows I include joal.jar and gluegen-rt.jar in my classpath.
I also include the gluegen-rt.dll and joal_native.dll in the Library path.
Anyone have any hints to what I might need to do extra in windows?
Thanks