Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.19 KB

idebugprogram2-enummodules.md

File metadata and controls

50 lines (43 loc) · 1.19 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Retrieves a list of the modules that this program has loaded and is executing.
IDebugProgram2::EnumModules
11/04/2016
reference
IDebugProgram2::EnumModules
IDebugProgram2::EnumModules
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugProgram2::EnumModules

Retrieves a list of the modules that this program has loaded and is executing.

Syntax

int EnumModules( 
   out IEnumDebugModules2 ppEnum
);
HRESULT EnumModules( 
   IEnumDebugModules2** ppEnum
);

Parameters

ppEnum
[out] Returns an IEnumDebugModules2 object that contains a list of the modules.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

A module is a DLL or assembly and is typically listed in the Modules debug window.

See also