Question

I have done some project in Irrlicht and it compiles all well, however when I try to run it, it gives me following error

The procedure entry point ?IdenttityMatrix@core@irr@@3V?$CMatrix4@M@12@B 
could not be located in the dynamic link library Irrlicht.dll.

What am I missing here, 'cause I can't figure out what exactly it is complaining about. Thanks in advance.

Was it helpful?

Solution

Well, at least your application starts! This means that your application links dynamically to Irrlicht.dll and not statically (in the later case, your application would not even start). This failure indicates that the Irrlicht.dll library has successfully been found but that the entry point of the expected function (in your case IdenttityMatrix) has not been found. Most probably, you are not using the right version of the library.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top