我是 COM 的新手,在调试 dll 时遇到问题。在这段代码中:
_Check_return_ HRESULT CoCreateInstance(_In_ REFCLSID rclsid, _In_opt_ LPUNKNOWN pUnkOuter = NULL, _In_ DWORD dwClsContext = CLSCTX_ALL)
throw()
{
ATLASSERT(p == NULL);
return ::CoCreateInstance(rclsid, pUnkOuter, dwClsContext, __uuidof(T), (void**)&p);
}
作为回报,我有错误 R6034:应用程序试图错误地加载 C 运行时库。
另外:在 VS 2008 的输出窗口中,我注意到调试在某些消息处停止:
'OmpClimApp.exe': Loaded '\\omegaserver\omega\app32\OMEGA.DLL\RWUXThemeS.dll', Binary was not built with debug information.
哪里有错误?