|
2 | 2 | title: "BUILT_TYPE | Microsoft Docs"
|
3 | 3 | ms.date: "11/04/2016"
|
4 | 4 | ms.topic: "conceptual"
|
5 |
| -f1_keywords: |
| 5 | +f1_keywords: |
6 | 6 | - "BUILT_TYPE"
|
7 |
| -helpviewer_keywords: |
| 7 | +helpviewer_keywords: |
8 | 8 | - "BUILT_TYPE structure"
|
9 | 9 | ms.assetid: cc02c32c-0f65-4210-ad25-a9b1899066e8
|
10 | 10 | author: "gregvanl"
|
11 | 11 | ms.author: "gregvanl"
|
12 | 12 | manager: jillfra
|
13 |
| -ms.workload: |
| 13 | +ms.workload: |
14 | 14 | - "vssdk"
|
15 | 15 | ---
|
16 | 16 | # 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