DEBUGPROP_INFO_FLAGS
Visual Studio 2010
Specifies what information to retrieve about a debug property object.
public enum enum_DEBUGPROP_INFO_FLAGS { DEBUGPROP_INFO_FULLNAME = 0x00000001, DEBUGPROP_INFO_NAME = 0x00000002, DEBUGPROP_INFO_TYPE = 0x00000004, DEBUGPROP_INFO_VALUE = 0x00000008, DEBUGPROP_INFO_ATTRIB = 0x00000010, DEBUGPROP_INFO_PROP = 0x00000020, DEBUGPROP_INFO_VALUE_AUTOEXPAND = 0x00010000, DEBUGPROP_INFO_VALUE_NOFUNCEVAL = 0x00020000, DEBUGPROP_INFO_VALUE_RAW = 0x00040000, DEBUGPROP_INFO_VALUE_NO_TOSTRING = 0x00080000 DEBUGPROP_INFO_NONE = 0x00000000, DEBUGPROP_INFO_STANDARD = DEBUGPROP_INFO_ATTRIB | DEBUGPROP_INFO_NAME | DEBUGPROP_INFO_TYPE | DEBUGPROP_INFO_VALUE, DEBUGPROP_INFO_ALL = 0xffffffff };
These values are passed to the IDebugProperty2::GetPropertyInfo, IDebugProperty2::EnumChildren, and IDebugStackFrame2::EnumProperties methods to indicate which fields are to be initialized the DEBUG_PROPERTY_INFO structure.
These values are also used for the dwFields member of the DEBUG_PROPERTY_INFO structure to indicate which fields of the structure are used and valid when the structure is returned.
These values may be combined with a bitwise OR.