您的位置:首页 > 产品设计 > UI/UE

Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call.

2012-08-10 01:47 344 查看
调用IIS管理组件时编写了下面一段代码,调用函数时提示错误:Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call. This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention.

std::wcout.imbue(std::locale("chs"));
::CoInitialize(NULL);

CLSID clsid;
HRESULT hr = ::CLSIDFromProgID(PROGID_WRITABLEADMINMANAGER, &clsid);

CComPtr pAdminMgr;
hr = ::CoCreateInstance(clsid, NULL, CLSCTX_LOCAL_SERVER, IID_IDispatch, reinterpret_cast(&pAdminMgr));

CComVariant vtServerPath(XLOG_CFGSECTION_SERVER_XPATH);
CComVariant vtAppHost(CFG_PATH_APPHOST);
CComVariant vtServerConfigSection;

hr = pAdminMgr.PutPropertyByName(_T("CommitPath"), &vtAppHost);


国外论坛不少人也提过这个问题将Calling Convention由原来的__cdecl (/Gd)修改为__stdcall (/Gz),其实是因为IUnknown被转换为IDispatch的问题。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐