AD_PROCESS_ID_TYPE

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 how to interpret a process ID in the AD_PROCESS_ID structure.

Syntax

enum enum_AD_PROCESS_ID {
    AD_PROCESS_ID_SYSTEM = 0,
    AD_PROCESS_ID_GUID   = 1
};
typedef DWORD AD_PROCESS_ID_TYPE;
public enum enum_AD_PROCESS_ID {
    AD_PROCESS_ID_SYSTEM = 0,
    AD_PROCESS_ID_GUID   = 1
};

Fields

AD_PROCESS_ID_SYSTEM
Process ID is a system identifier. Use the ProcessId.dwProcessId field of the AD_PROCESS_ID structure.

AD_PROCESS_ID_GUID
Process ID is a GUID. Use the ProcessId.guidProcessId field of the AD_PROCESS_ID structure.

Remarks

Used for the ProcessIdType member of the AD_PROCESS_ID structure to identify the type of process ID that is contained in the structure. Determines how to interpret the ProcessId union in the structure.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also