IDebugProgram2::EnumModules
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Retrieves a list of the modules that this program has loaded and is executing.
Syntax
HRESULT EnumModules(
IEnumDebugModules2** ppEnum
);
int EnumModules(
out 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.