LocationKind enumeration (dbgmodel.h)

Defines the location of a field or other data.

Syntax

typedef enum LocationKind {
  LocationMember,
  LocationStatic,
  LocationConstant,
  LocationNone
} ;

Constants

 
LocationMember
The field is a member and has an offset relative to the this pointer.
LocationStatic
The field is static and has an address.
LocationConstant
The field is constant and has a value.
LocationNone
The 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

See also

Debugger Data Model C++ Overview