MACHINE_INFO_FIELDS

Applies to: yesVisual Studio noVisual 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

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

Syntax

enum enum_MACHINE_INFO_FIELDS { 
   MCIF_NAME  = 0x00000001,
   MCIF_FLAGS = 0x00000002,
   MCIF_ALL   = 0x00000003
};
typedef DWORD MACHINE_INFO_FIELDS;
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