Help w/ DLL: Error

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
carb

Help w/ DLL: Error

Post by carb »

I get the following error when ever I successfully compile, but try to run an Irrlicht app (with the irrlicht.dll file in the proper directory):

_ZN3irr12createDeviceENS_5video11EDriverTypeERKNS_4core11dimension2dIiEEjbbPNS_14EventReceiverE could not be located in the dynamic link library Irrlicht.dll

Does this mean the .dll is borked, or what?

- Ben
deps
Posts: 115
Joined: Sat Jan 10, 2004 5:22 pm
Location: Tranås, Sweden

Post by deps »

Linking with wrong version of the lib's i guess.
For example you could be linking with 0.4.0 and running with the 0.4.2 dll.
keless
Posts: 805
Joined: Mon Dec 15, 2003 10:37 pm
Location: Los Angeles, California, USA

Post by keless »

or, you could be using a .DLL from the wrong compiler-- ie: you compiled in DevCpp, and you're using the MSVC .DLL
a screen cap is worth 0x100000 DWORDS
guest

Post by guest »

As far as I can tell windows with MinGW gcc doesnt understand the visualstudio versions but will compile devcpp, and like they said later make sure it can find the devcpp dll. On mine loading the quake map simply crashes with no explaination with this method so good luck.
Post Reply