简体   繁体   中英

Irrlicht error “No Entry point”

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM