DkmNativeCppPrimitiveTypeKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a kind of primitive type in C++.
This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).
public enum class DkmNativeCppPrimitiveTypeKind
public enum class DkmNativeCppPrimitiveTypeKind
enum DkmNativeCppPrimitiveTypeKind
public enum DkmNativeCppPrimitiveTypeKind
type DkmNativeCppPrimitiveTypeKind =
Public Enum DkmNativeCppPrimitiveTypeKind
- Inheritance
-
DkmNativeCppPrimitiveTypeKind
Fields
Bool | 11 | C++ 'bool' type. |
Char | 1 | C++ 'char' type. |
Char16T | 13 | C++ 'char16_t' type. |
Char32T | 14 | C++ 'char32_t' type. |
Char8T | 19 | C++ 'char8_t' type. |
Double | 16 | C++ 'double' type. |
Float | 15 | C++ 'float' type. |
HRESULT | 17 | C++ 'HRESULT' type. |
Int | 5 | C++ 'int' type. |
Int64 | 9 | C++ '__int64' type. |
Long | 7 | C++ 'long' type. |
Short | 3 | C++ 'short' type. |
Unknown | 0 | Unknown C++ type. |
UnsignedChar | 2 | C++ 'unsigned char' type. |
UnsignedInt | 6 | C++ 'unsigned int' type. |
UnsignedInt64 | 10 | C++ 'unsigned __int64' type. |
UnsignedLong | 8 | C++ 'unsigned long' type. |
UnsignedShort | 4 | C++ 'unsigned short' type. |
Void | 18 | C++ 'void' type. |
WCharT | 12 | C++ 'wchar_t' type. |