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 a pointer type.
Syntax
typedef enum PointerKind {
PointerStandard,
PointerReference,
PointerRValueReference,
PointerCXHat,
PointerManagedReference
} ;
Constants
PointerStandardIndicates a standard C/C++ pointer -- a * |
PointerReferenceIndicates a C/C++ reference (whether const or not) -- a & |
PointerRValueReferenceIndicates a C/C++ rvalue reference (whether const or not) -- a && |
PointerCXHatIndicates a C++/CX hat managed pointer (whether const or not) -- a ^ |
PointerManagedReferenceIndicates a managed pointer reference |
Requirements
| Requirement | Value |
|---|---|
| Header | dbgmodel.h |