IDebugHostSymbols::FindModuleByLocation 方法 (dbgmodel.h)

FindModuleByLocation 方法将浏览给定的主机上下文,并确定哪个模块包含指定位置给定的地址。 然后,它将接口返回到此类模块。

语法

HRESULT FindModuleByLocation(
  IDebugHostContext *context,
  Location          moduleLocation,
  IDebugHostModule  **module
);

参数

context

将在此主机上下文中搜索包含 moduleLocation 参数给定地址的已加载模块。

moduleLocation

给定上下文中包含此参数指定的地址的模块将 (返回,否则方法将) 失败。

module

如果找到模块,则会在此处返回模块的接口。

返回值

此方法返回指示成功或失败的 HRESULT。

注解

示例代码

ComPtr<IDebugHost> spHost; /* get the host */

ComPtr<IDebugHostSymbols> spSym;
if (SUCCEEDED(spHost.As(&spSym)))
{
    // Find the module which contains the address 0x7f638000 in the current 
    // UI context (process) of the debug host
    ComPtr<IDebugHostModule> spModule;
    if (SUCCEEDED(sySym->FindModuleByLocation(USE_CURRENT_HOST_CONTEXT, 
                                              0x7f638000, 
                                              &spModule)))
    {
        // spModule is the module which contains the VA 0x7f638000
    }
}

要求

要求
Header dbgmodel.h

另请参阅

IDebugHostSymbols 接口