Skip to content

Delete unnecessary spaces #2510

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 1 commit 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
94 changes: 47 additions & 47 deletions docs/extensibility/debugger/reference/computer-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,58 @@
title: "COMPUTER_INFO | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
helpviewer_keywords:
helpviewer_keywords:
- "COMPUTER_INFO structure"
ms.assetid: 943085b2-f165-462d-9a4e-2086f0cdfff4
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# COMPUTER_INFO
Describes the computer on which the debugger is running.
## Syntax
```cpp
typedef struct tagCOMPUTER_INFO
{
WORD wProcessorArchitecture;
WORD wSuiteMask;
DWORD dwOperatingSystemVersion;
} COMPUTER_INFO;
```
```csharp
public struct COMPUTER_INFO
{
public ushort wProcessorArchitecture;
public ushort wSuiteMask;
public uint dwOperatingSystemVersion;
}
```
## Terms
wProcessorArchitecture
Identifies the architecture of the microprocessor.
wSuiteMask
Identifies the suite mask.
dwOperatingSystemVersion
Operating system version number.
## Remarks
This structure is returned by the [GetComputerInfo](../../../extensibility/debugger/reference/idebugwindowscomputerport2-getcomputerinfo.md) method.
## Requirements
Header: Msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[GetComputerInfo](../../../extensibility/debugger/reference/idebugwindowscomputerport2-getcomputerinfo.md)
Describes the computer on which the debugger is running.

## Syntax

```cpp
typedef struct tagCOMPUTER_INFO
{
WORD wProcessorArchitecture;
WORD wSuiteMask;
DWORD dwOperatingSystemVersion;
} COMPUTER_INFO;
```

```csharp
public struct COMPUTER_INFO
{
public ushort wProcessorArchitecture;
public ushort wSuiteMask;
public uint dwOperatingSystemVersion;
}
```

## Terms
wProcessorArchitecture
Identifies the architecture of the microprocessor.

wSuiteMask
Identifies the suite mask.

dwOperatingSystemVersion
Operating system version number.

## Remarks
This structure is returned by the [GetComputerInfo](../../../extensibility/debugger/reference/idebugwindowscomputerport2-getcomputerinfo.md) method.

## Requirements
Header: Msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[GetComputerInfo](../../../extensibility/debugger/reference/idebugwindowscomputerport2-getcomputerinfo.md)