DkmPrimitiveObjectType 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.
Indicates the underlying primitive type (ex: UInt32) being operated on.
public enum class DkmPrimitiveObjectType
public enum class DkmPrimitiveObjectType
enum DkmPrimitiveObjectType
public enum DkmPrimitiveObjectType
type DkmPrimitiveObjectType =
Public Enum DkmPrimitiveObjectType
- Inheritance
-
DkmPrimitiveObjectType
Fields
Name | Value | Description |
---|---|---|
Int8 | 0 | Represents a signed 8-bit integer. |
UInt8 | 1 | Represents an unsigned 8-bit integer. |
Int16 | 2 | Represents a signed 16-bit integer. |
UInt16 | 3 | Represents an unsigned signed 16-bit integer. |
Int32 | 4 | Represents a signed 32-bit integer. |
UInt32 | 5 | Represents an unsigned 32-bit integer. |
Int64 | 6 | Represents a signed 64-bit integer. |
UInt64 | 7 | Represents an unsigned 64-bit integer. |
Float | 8 | Represents a 32-bit single-precision floating-point value. |
Double | 9 | Represents a 64-bit double-precision floating-point value. |
LongDouble | 10 | Represents a 10-byte floating-point value. |