I've just installed irrKlang to give my irrlicht programs some audio capabilities. However when I try and compile and run the helloworld example, it compiles fine but I get the following errors when I try and run the executable:
The procedure entry point
?createIrrKlang@audio@irr@@YAPAVISoundEngine@12@W4E_SOUND_OUTPUT_DRIVER@12@HPBD@Z
could not be located inthe dynamic link library irrKlang.dll
followed by another error:
could not execute: Path not found(Win32 error 3)
I'm using Visual Studio 6 (old I know!), and I'm fairly sure I've registered the include,bin etc. directories okay. I suspect this could be an issue with the IDE rather than irrKlang.dll itself, because the pre-supplied executables that came with the download work just fine!
Any ideas?
irrKlang.dll entry point error
just found the solution. My irrlicht installation had an older copy of the irrKlang.dll file, and this was being called in preference to the newer one I'd downloaded. I removed the older dll and hey presto works fine! feel like a bit of a dummy for not realising it sooner but oh well... thanks for the help niko and hybrid!