|
2 | 2 | title: "DataKind | Microsoft Docs"
|
3 | 3 | ms.date: "11/04/2016"
|
4 | 4 | ms.topic: "conceptual"
|
5 |
| -dev_langs: |
| 5 | +dev_langs: |
6 | 6 | - "C++"
|
7 |
| -helpviewer_keywords: |
| 7 | +helpviewer_keywords: |
8 | 8 | - "DataKind enumeration"
|
9 | 9 | ms.assetid: b64be708-22d6-4360-99e7-8f4e6b196de7
|
10 | 10 | author: "mikejo5000"
|
11 | 11 | ms.author: "mikejo"
|
12 | 12 | manager: jillfra
|
13 |
| -ms.workload: |
| 13 | +ms.workload: |
14 | 14 | - "multiple"
|
15 | 15 | ---
|
16 | 16 | # DataKind
|
17 |
| -Indicates the particular scope of a data value. |
18 |
| - |
19 |
| -## Syntax |
20 |
| - |
21 |
| -```C++ |
22 |
| -enum DataKind { |
23 |
| - DataIsUnknown, |
24 |
| - DataIsLocal, |
25 |
| - DataIsStaticLocal, |
26 |
| - DataIsParam, |
27 |
| - DataIsObjectPtr, |
28 |
| - DataIsFileStatic, |
29 |
| - DataIsGlobal, |
30 |
| - DataIsMember, |
31 |
| - DataIsStaticMember, |
32 |
| - DataIsConstant |
33 |
| -}; |
34 |
| -``` |
35 |
| - |
36 |
| -## Elements |
37 |
| - DataIsUnknown |
38 |
| - Data symbol cannot be determined. |
39 |
| - |
40 |
| - DataIsLocal |
41 |
| - Data item is a local variable. |
42 |
| - |
43 |
| - DataIsStaticLocal |
44 |
| - Data item is a static local variable. |
45 |
| - |
46 |
| - DataIsParam |
47 |
| - Data item is a formal parameter. |
48 |
| - |
49 |
| - DataIsObjectPtr |
50 |
| - Data item is an object pointer (`this`). |
51 |
| - |
52 |
| - DataIsFileStatic |
53 |
| - Data item is a file-scoped variable. |
54 |
| - |
55 |
| - DataIsGlobal |
56 |
| - Data item is a global variable. |
57 |
| - |
58 |
| - DataIsMember |
59 |
| - Data item is an object member variable. |
60 |
| - |
61 |
| - DataIsStaticMember |
62 |
| - Data item is a class static variable. |
63 |
| - |
64 |
| - DataIsConstant |
65 |
| - Data item is a constant value. |
66 |
| - |
67 |
| -## Remarks |
68 |
| - The values in this enumeration are returned by the [IDiaSymbol::get_dataKind](../../debugger/debug-interface-access/idiasymbol-get-datakind.md) method. |
69 |
| - |
70 |
| -## Requirements |
71 |
| - Header: cvconst.h |
72 |
| - |
73 |
| -## See Also |
74 |
| - [Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md) |
75 |
| - [IDiaSymbol::get_dataKind](../../debugger/debug-interface-access/idiasymbol-get-datakind.md) |
| 17 | +Indicates the particular scope of a data value. |
| 18 | + |
| 19 | +## Syntax |
| 20 | + |
| 21 | +```C++ |
| 22 | +enum DataKind { |
| 23 | + DataIsUnknown, |
| 24 | + DataIsLocal, |
| 25 | + DataIsStaticLocal, |
| 26 | + DataIsParam, |
| 27 | + DataIsObjectPtr, |
| 28 | + DataIsFileStatic, |
| 29 | + DataIsGlobal, |
| 30 | + DataIsMember, |
| 31 | + DataIsStaticMember, |
| 32 | + DataIsConstant |
| 33 | +}; |
| 34 | +``` |
| 35 | + |
| 36 | +## Elements |
| 37 | +DataIsUnknown |
| 38 | +Data symbol cannot be determined. |
| 39 | + |
| 40 | +DataIsLocal |
| 41 | +Data item is a local variable. |
| 42 | + |
| 43 | +DataIsStaticLocal |
| 44 | +Data item is a static local variable. |
| 45 | + |
| 46 | +DataIsParam |
| 47 | +Data item is a formal parameter. |
| 48 | + |
| 49 | +DataIsObjectPtr |
| 50 | +Data item is an object pointer (`this`). |
| 51 | + |
| 52 | +DataIsFileStatic |
| 53 | +Data item is a file-scoped variable. |
| 54 | + |
| 55 | +DataIsGlobal |
| 56 | +Data item is a global variable. |
| 57 | + |
| 58 | +DataIsMember |
| 59 | +Data item is an object member variable. |
| 60 | + |
| 61 | +DataIsStaticMember |
| 62 | +Data item is a class static variable. |
| 63 | + |
| 64 | +DataIsConstant |
| 65 | +Data item is a constant value. |
| 66 | + |
| 67 | +## Remarks |
| 68 | +The values in this enumeration are returned by the [IDiaSymbol::get_dataKind](../../debugger/debug-interface-access/idiasymbol-get-datakind.md) method. |
| 69 | + |
| 70 | +## Requirements |
| 71 | +Header: cvconst.h |
| 72 | + |
| 73 | +## See Also |
| 74 | +[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md) |
| 75 | +[IDiaSymbol::get_dataKind](../../debugger/debug-interface-access/idiasymbol-get-datakind.md) |
0 commit comments