Share via


MODULE_INFO_FLAGS

Specifies the state of symbols for a module.

enum enum_MODULE_INFO_FLAGS {
   MIF_SYMBOLS_LOADED = 0x0001
};
typedef DWORD MODULE_INFO_FLAGS;
public enum enum_MODULE_INFO_FLAGS {
   MIF_SYMBOLS_LOADED = 0x0001
};

Members

  • MIF_SYMBOLS_LOADED
    At least one set of symbols was loaded by the module (otherwise no symbols were loaded).

Remarks

This value is returned by the IDebugSymbolSearchEvent2::GetSymbolSearchInfo method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Enumerations (Visual Studio Debugging)

IDebugSymbolSearchEvent2::GetSymbolSearchInfo