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 location of a field or other data.
Syntax
typedef enum LocationKind {
LocationMember,
LocationStatic,
LocationConstant,
LocationNone
} ;
Constants
LocationMemberThe field is a member and has an offset relative to the this pointer. |
LocationStaticThe field is static and has an address. |
LocationConstantThe field is constant and has a value. |
LocationNoneThe field has no location (e.g.: it has been optimized out or was a static which was defined but not declared). |
Requirements
| Requirement | Value |
|---|---|
| Header | dbgmodel.h |