IVsDebugger2.IsEngineCompatible(Guid, UInt32, Guid[]) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检查调试引擎与其他调试引擎的兼容性。
public:
int IsEngineCompatible(Guid % guidEngine, System::UInt32 EngineCount, cli::array <Guid> ^ pEngineGUIDs);
public int IsEngineCompatible (ref Guid guidEngine, uint EngineCount, Guid[] pEngineGUIDs);
abstract member IsEngineCompatible : Guid * uint32 * Guid[] -> int
Public Function IsEngineCompatible (ByRef guidEngine As Guid, EngineCount As UInteger, pEngineGUIDs As Guid()) As Integer
参数
- guidEngine
- Guid
中测试兼容性的引擎的 GUID。
- EngineCount
- UInt32
中数组中的 Guid 数目 pEngineGUIDs 。
- pEngineGUIDs
- Guid[]
中调试引擎的 Guid 数组。
返回
S_OK如果调试引擎 (guidEngine) 是否与 pEngineGUIDs 中的所有引擎兼容,则返回。 否则,该方法将返回 S_FALSE。
注解
COM 签名
从 vsshell80:
HRESULT IVsDebugger2::IsEngineCompatible(
[in] REFGUID guidEngine,
[in] ULONG EngineCount,
[in, size_is(EngineCount)] GUID * pEngineGUIDs
);