|
以下这段代码在Release下运行正常,但在Bebug下运行时出现错误
#include "stdafx.h"
#include <osgDB/ReadFile>
#include <osgViewer/Viewer>
int _tmain(int argc, _TCHAR* argv[])
{
osgViewer::Viewer viewer;
viewer.setSceneData(osgDB::readNodeFile("cessna.osg"));
return viewer.run();
}
错误提示为“应用程序错误:应用程序正常初始化(0xc0150002)失败。请单击‘确定’,终止应用程序。”
在VC2005的“输出”框中显示:“LDR: LdrpWalkImportDescriptor() failed to probe C:\WINDOWS\system32\osg55-osgDBd.dll for its manifest, ntstatus 0xc0150002”。
请问这是什么原因? |
|