Skip to content

Latest commit

 

History

History
70 lines (57 loc) · 1.87 KB

machine-info-fields.md

File metadata and controls

70 lines (57 loc) · 1.87 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Specifies what kind of information to retrieve for a particular machine.
MACHINE_INFO_FIELDS
11/04/2016
reference
MACHINE_INFO_FIELDS
MACHINE_INFO_FIELDS enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

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

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