Edit

Share via


MACHINE_INFO_FIELDS

Specifies what kind of information to retrieve for a particular machine.

Syntax

public enum enum_MACHINE_INFO_FIELDS { 
   MCIF_NAME  = 0x00000001,
   MCIF_FLAGS = 0x00000002,
   MCIF_ALL   = 0x00000003
};

Fields

MCIF_NAME
Initialize/use the bstrName field in the structure.

MCIF_FLAGS
Initialize/use the Flags field in the structure.

MIF_ALL
Initialize/use all of the fields in the structure.

Remarks

These values are passed to the GetMachineInfo method to indicate which members of the MACHINE_INFO structure are to be initialized.

Also used in the Fields member of the MACHINE_INFO structure to indicate which fields are used and valid.

These flags may be combined with a bitwise OR.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also