Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines the kind of an intrinsic (basic) type. This is distinct from the variant type which carries the type.
Syntax
typedef enum IntrinsicKind {
IntrinsicVoid,
IntrinsicBool,
IntrinsicChar,
IntrinsicWChar,
IntrinsicInt,
IntrinsicUInt,
IntrinsicLong,
IntrinsicULong,
IntrinsicFloat,
IntrinsicHRESULT,
IntrinsicChar16,
IntrinsicChar32
} ;
Constants
IntrinsicVoidvoid |
IntrinsicBoolbool |
IntrinsicCharchar |
IntrinsicWCharwchar_t |
IntrinsicIntsigned int (of some size -- not necessarily 4 bytes) |
IntrinsicUIntunsigned int (of some size -- not necessarily 4 bytes) |
IntrinsicLonglong (of some size) |
IntrinsicULongunsigned long (of some size) |
IntrinsicFloatfloating point (of some size -- not necessarily 4 bytes) |
IntrinsicHRESULTHRESULT |
IntrinsicChar16char16_t |
IntrinsicChar32char32_t |
Requirements
| Requirement | Value |
|---|---|
| Header | dbgmodel.h |