错误C2065:'CoInitializeEx':未声明的标识符

时间:2008-12-11 11:40:56

标签: c++ mfc

尝试使用hres = CoInitializeEx(0, COINIT_MULTITHREADED);

时出现以下错误
  

错误C2065:'CoInitializeEx':未声明的标识符

我已经包括:

#define _WIN32_DCOM
#include <iostream>
using namespace std;
#include <comdef.h>
#include <Wbemidl.h>

在我的cpp文件中。

请帮助。

谢谢, NEHA

1 个答案:

答案 0 :(得分:5)

尝试将以下行放在预编译头文件的开头( stdafx.h )。

#define _WIN32_WINNT 0x0400