我想在函数 CoCreateInstance 中使用 __uuidof:
CoCreateInstance(clsid,NULL,CLSCTX_INPROC_SERVER,__uuidof(Isesoft),(LPVOID*)&pem);
错误:
'__uuidof' was not declared in this scope.
如何在 MINGW 中使用它?
__uuidof
是 MS 特定的扩展,但您应该能够以可移植的方式将 __uuidof(IMyInterface)
替换为 IID_IMyInterface
以获得相同的行为。