如何在 MINGW 中使用 __uuidof?

问题描述 投票:0回答:1

我想在函数 CoCreateInstance 中使用 __uuidof:

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

错误:

'__uuidof' was not declared in this scope.

如何在 MINGW 中使用它?

c++ gcc com mingw
1个回答
3
投票

__uuidof
是 MS 特定的扩展,但您应该能够以可移植的方式将
__uuidof(IMyInterface)
替换为
IID_IMyInterface
以获得相同的行为。

© www.soinside.com 2019 - 2024. All rights reserved.