|
2 | 2 | title: "dwTYPE_KIND | Microsoft Docs"
|
3 | 3 | ms.date: "11/04/2016"
|
4 | 4 | ms.topic: "conceptual"
|
5 |
| -f1_keywords: |
| 5 | +f1_keywords: |
6 | 6 | - "dwTYPE_KIND"
|
7 |
| -helpviewer_keywords: |
| 7 | +helpviewer_keywords: |
8 | 8 | - "dwTYPE_KIND enumeration"
|
9 | 9 | ms.assetid: 6ff56b0f-c502-4e6c-9829-bfa05361b783
|
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 | # dwTYPE_KIND
|
17 |
| -Specifies how to interpret the type of an [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object. |
18 |
| - |
19 |
| -## Syntax |
20 |
| - |
21 |
| -```cpp |
22 |
| -enum enum_dwTYPE_KIND { |
23 |
| - TYPE_KIND_METADATA = 0x0001, |
24 |
| - TYPE_KIND_PDB = 0x0002, |
25 |
| - TYPE_KIND_BUILT = 0x0003, |
26 |
| -}; |
27 |
| - |
28 |
| -typedef DWORD dwTYPE_KIND; |
29 |
| -``` |
30 |
| - |
31 |
| -```csharp |
32 |
| -public enum enum_dwTYPE_KIND { |
33 |
| - TYPE_KIND_METADATA = 0x0001, |
34 |
| - TYPE_KIND_PDB = 0x0002, |
35 |
| - TYPE_KIND_BUILT = 0x0003, |
36 |
| -}; |
37 |
| -``` |
38 |
| - |
39 |
| -#### Parameters |
40 |
| - TYPE_KIND_METADATA |
41 |
| - The [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) union should be interpreted as a [METADATA_TYPE](../../../extensibility/debugger/reference/metadata-type.md) structure. |
42 |
| - |
43 |
| - TYPE_KIND_PDB |
44 |
| - The `TYPE_INFO` union should be interpreted as a [PDB_TYPE](../../../extensibility/debugger/reference/pdb-type.md) structure. |
45 |
| - |
46 |
| - TYPE_KIND_BUILT |
47 |
| - The `TYPE_INFO` union should be interpreted as a [BUILT_TYPE](../../../extensibility/debugger/reference/built-type.md) structure. |
48 |
| - |
49 |
| -## Remarks |
50 |
| - The values of this enumeration appear in the `dwKind` field of the [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) structure and are used to determine how to interpret the `type` union member. The `TYPE_INFO` structure is returned by a call to the [GetTypeInfo](../../../extensibility/debugger/reference/idebugfield-gettypeinfo.md) method. |
51 |
| - |
52 |
| -## Requirements |
53 |
| - Header: sh.h |
54 |
| - |
55 |
| - Namespace: Microsoft.VisualStudio.Debugger.Interop |
56 |
| - |
57 |
| - Assembly: Microsoft.VisualStudio.Debugger.Interop.dll |
58 |
| - |
59 |
| -## See Also |
60 |
| - [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md) |
61 |
| - [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) |
62 |
| - [GetTypeInfo](../../../extensibility/debugger/reference/idebugfield-gettypeinfo.md) |
63 |
| - [METADATA_TYPE](../../../extensibility/debugger/reference/metadata-type.md) |
64 |
| - [PDB_TYPE](../../../extensibility/debugger/reference/pdb-type.md) |
65 |
| - [BUILT_TYPE](../../../extensibility/debugger/reference/built-type.md) |
| 17 | +Specifies how to interpret the type of an [IDebugField](../../../extensibility/debugger/reference/idebugfield.md) object. |
| 18 | + |
| 19 | +## Syntax |
| 20 | + |
| 21 | +```cpp |
| 22 | +enum enum_dwTYPE_KIND { |
| 23 | + TYPE_KIND_METADATA = 0x0001, |
| 24 | + TYPE_KIND_PDB = 0x0002, |
| 25 | + TYPE_KIND_BUILT = 0x0003, |
| 26 | +}; |
| 27 | + |
| 28 | +typedef DWORD dwTYPE_KIND; |
| 29 | +``` |
| 30 | + |
| 31 | +```csharp |
| 32 | +public enum enum_dwTYPE_KIND { |
| 33 | + TYPE_KIND_METADATA = 0x0001, |
| 34 | + TYPE_KIND_PDB = 0x0002, |
| 35 | + TYPE_KIND_BUILT = 0x0003, |
| 36 | +}; |
| 37 | +``` |
| 38 | + |
| 39 | +#### Parameters |
| 40 | +TYPE_KIND_METADATA |
| 41 | +The [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) union should be interpreted as a [METADATA_TYPE](../../../extensibility/debugger/reference/metadata-type.md) structure. |
| 42 | + |
| 43 | +TYPE_KIND_PDB |
| 44 | +The `TYPE_INFO` union should be interpreted as a [PDB_TYPE](../../../extensibility/debugger/reference/pdb-type.md) structure. |
| 45 | + |
| 46 | +TYPE_KIND_BUILT |
| 47 | +The `TYPE_INFO` union should be interpreted as a [BUILT_TYPE](../../../extensibility/debugger/reference/built-type.md) structure. |
| 48 | + |
| 49 | +## Remarks |
| 50 | +The values of this enumeration appear in the `dwKind` field of the [TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) structure and are used to determine how to interpret the `type` union member. The `TYPE_INFO` structure is returned by a call to the [GetTypeInfo](../../../extensibility/debugger/reference/idebugfield-gettypeinfo.md) method. |
| 51 | + |
| 52 | +## Requirements |
| 53 | +Header: sh.h |
| 54 | + |
| 55 | +Namespace: Microsoft.VisualStudio.Debugger.Interop |
| 56 | + |
| 57 | +Assembly: Microsoft.VisualStudio.Debugger.Interop.dll |
| 58 | + |
| 59 | +## See Also |
| 60 | +[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md) |
| 61 | +[TYPE_INFO](../../../extensibility/debugger/reference/type-info.md) |
| 62 | +[GetTypeInfo](../../../extensibility/debugger/reference/idebugfield-gettypeinfo.md) |
| 63 | +[METADATA_TYPE](../../../extensibility/debugger/reference/metadata-type.md) |
| 64 | +[PDB_TYPE](../../../extensibility/debugger/reference/pdb-type.md) |
| 65 | +[BUILT_TYPE](../../../extensibility/debugger/reference/built-type.md) |
0 commit comments