VSNDK.DebugEngine.AD7ProgramNodeAttach.EnumModules C# (CSharp) Method

EnumModules() public method

Retrieves a list of the modules that this program has loaded and is executing. (http://msdn.microsoft.com/en-us/library/bb146980.aspx)
public EnumModules ( IEnumDebugModules2 &ppEnum ) : int
ppEnum IEnumDebugModules2 Returns an IEnumDebugModules2 object that contains a list of the modules.
return int
        public int EnumModules(out IEnumDebugModules2 ppEnum)
        {
            // Setting ppEnum to null because we are not adding/working with this feature now. It was causing an error
            // when opening Threads Window and ppEnum = new AD7ModuleEnum(new[] { m_module }).
            ppEnum = null;
            return VSConstants.S_OK;
        }