我有以下接口。界面返回ISystemCmds
界面作爲GetSystemCommandInterface
方法的一部分。我們使用ATL來創建COM。在另一個COM對象內創建一個COM對象
interface IDevice : IDispatch{
[id(1), helpstring("method Connect")] HRESULT Connect([in] VARIANT varPortNo);
[id(2), helpstring("method GetSystemCommandInterface")] HRESULT GetSystemCommandInterface([out,retval] ISystemCmds** pISystemCmd);
};
什麼代碼應爲ISystemCmds
如果
一個創建COM對象添加(和在哪裏)。我正在爲ISystemCmds創建COM對象,作爲IDevice
的COM對象創建的一部分? b。我在GetSystemCommandInterface
()方法中創建COM對象?
我們需要更深入! (對不起) – 2011-06-08 09:44:19