如何在MINGW中使用__uuidof?

时间:2013-09-04 06:07:32

标签: c++ gcc compiler-construction com mingw

我想在函数CoCreateInstance中使用__uuidof:

CoCreateInstance(clsid,NULL,CLSCTX_INPROC_SERVER,__uuidof(Isesoft),(LPVOID*)&pem);

错误:

'__uuidof' was not declared in this scope.

如何在MINGW中使用它?

1 个答案:

答案 0 :(得分:2)

__uuidof是MS特定的扩展程序,但您应该能够以__uuidof(IMyInterface)替换IID_IMyInterface以便携式方式获取相同的行为。