简体   繁体   English

错误错误“无入口点”

[英]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 我已经在Irrlicht中完成了一些项目,并且编译良好,但是当我尝试运行它时,出现以下错误

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). 这意味着您的应用程序动态链接到Irrlicht.dll,而不是静态链接(在以后的情况下,您的应用程序甚至无法启动)。 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. 此失败表明已成功找到 Irrlicht.dll库,但未找到预期函数(在您的情况下为IdenttityMatrix)的入口点。 Most probably, you are not using the right version of the library. 最有可能的是,您没有使用正确版本的库。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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