MACHINE_INFO_FIELDS
Note
This article applies to Visual Studio 2015. 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
};
Members
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