Skip to content

Commit 5a0371e

Browse files
authored
Merge pull request #2507 from changeworld/patch-1
Delete unnecessary spaces
2 parents 8faca4c + 4d0ad27 commit 5a0371e

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

docs/extensibility/debugger/reference/built-type.md

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,60 @@
22
title: "BUILT_TYPE | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
f1_keywords:
5+
f1_keywords:
66
- "BUILT_TYPE"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "BUILT_TYPE structure"
99
ms.assetid: cc02c32c-0f65-4210-ad25-a9b1899066e8
1010
author: "gregvanl"
1111
ms.author: "gregvanl"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "vssdk"
1515
---
1616
# BUILT_TYPE
17-
This structure specifies information about a field type taken from metadata.
18-
19-
## Syntax
20-
21-
```cpp
22-
typedef struct _tagTYPE_BUILT {
23-
ULONG32 ulAppDomainID;
24-
GUID guidModule;
25-
IDebugField* pUnderlyingField;
26-
} BUILT_TYPE;
27-
```
28-
29-
```csharp
30-
public struct BUILT_TYPE {
31-
public uint ulAppDomainID;
32-
public Guid guidModule;
33-
public IDebugField pUnderlyingField;
34-
};
35-
```
36-
37-
#### Parameters
38-
ulAppDomainID
39-
ID of the application from which the symbol came. This is used to uniquely identify an instance of the application.
40-
41-
guidModule
42-
The GUID of the module that contains this field.
43-
44-
pUnderlyingField
45-
An [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object identifying the underlying field associated with this built field.
46-
47-
## Remarks
48-
This structure appears as part of the union in the [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) structure when the `dwKind` field of the `TYPE_INFO` structure is set to `TYPE_KIND_BUILT` (a value from the [dwTYPE_KIND](../../../extensibility/debugger/reference/dwtype-kind.md) enumeration).
49-
50-
## Requirements
51-
Header: sh.h
52-
53-
Namespace: Microsoft.VisualStudio.Debugger.Interop
54-
55-
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
56-
57-
## See Also
58-
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
59-
[TYPE_INFO](../../../extensibility/debugger/reference/type-info.md)
60-
[dwTYPE_KIND](../../../extensibility/debugger/reference/dwtype-kind.md)
61-
[IDebugField](../../../extensibility/debugger/reference/idebugfield.md)
17+
This structure specifies information about a field type taken from metadata.
18+
19+
## Syntax
20+
21+
```cpp
22+
typedef struct _tagTYPE_BUILT {
23+
ULONG32 ulAppDomainID;
24+
GUID guidModule;
25+
IDebugField* pUnderlyingField;
26+
} BUILT_TYPE;
27+
```
28+
29+
```csharp
30+
public struct BUILT_TYPE {
31+
public uint ulAppDomainID;
32+
public Guid guidModule;
33+
public IDebugField pUnderlyingField;
34+
};
35+
```
36+
37+
#### Parameters
38+
ulAppDomainID
39+
ID of the application from which the symbol came. This is used to uniquely identify an instance of the application.
40+
41+
guidModule
42+
The GUID of the module that contains this field.
43+
44+
pUnderlyingField
45+
An [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object identifying the underlying field associated with this built field.
46+
47+
## Remarks
48+
This structure appears as part of the union in the [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) structure when the `dwKind` field of the `TYPE_INFO` structure is set to `TYPE_KIND_BUILT` (a value from the [dwTYPE_KIND](../../../extensibility/debugger/reference/dwtype-kind.md) enumeration).
49+
50+
## Requirements
51+
Header: sh.h
52+
53+
Namespace: Microsoft.VisualStudio.Debugger.Interop
54+
55+
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
56+
57+
## See Also
58+
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
59+
[TYPE_INFO](../../../extensibility/debugger/reference/type-info.md)
60+
[dwTYPE_KIND](../../../extensibility/debugger/reference/dwtype-kind.md)
61+
[IDebugField](../../../extensibility/debugger/reference/idebugfield.md)

0 commit comments

Comments
 (0)