Skip to content

Delete unnecessary spaces #2485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 42 additions & 42 deletions docs/extensibility/debugger/reference/ad-process-id-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,54 +2,54 @@
title: "AD_PROCESS_ID_TYPE | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
f1_keywords:
f1_keywords:
- "AD_PROCESS_ID_TYPE"
helpviewer_keywords:
helpviewer_keywords:
- "AD_PROCESS_ID_TYPE enumeration"
ms.assetid: 0aab80e9-285a-4697-94ac-c864d42a6aaa
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# AD_PROCESS_ID_TYPE
Specifies how to interpret a process ID in the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) structure.
## Syntax
```cpp
enum enum_AD_PROCESS_ID {
AD_PROCESS_ID_SYSTEM = 0,
AD_PROCESS_ID_GUID = 1
};
typedef DWORD AD_PROCESS_ID_TYPE;
```
```csharp
public enum enum_AD_PROCESS_ID {
AD_PROCESS_ID_SYSTEM = 0,
AD_PROCESS_ID_GUID = 1
};
```
## Members
AD_PROCESS_ID_SYSTEM
Process ID is a system identifier. Use the `ProcessId.dwProcessId` field of the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) 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](../../../extensibility/debugger/reference/ad-process-id.md) 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
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md)
Specifies how to interpret a process ID in the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) structure.

## Syntax

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

```csharp
public enum enum_AD_PROCESS_ID {
AD_PROCESS_ID_SYSTEM = 0,
AD_PROCESS_ID_GUID = 1
};
```

## Members
AD_PROCESS_ID_SYSTEM
Process ID is a system identifier. Use the `ProcessId.dwProcessId` field of the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) 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](../../../extensibility/debugger/reference/ad-process-id.md) 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
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md)