PinnedVariableType Enumeration

Specifies the general type (e.g. scalar/pointer) of a given pinned variable.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public enum PinnedVariableType

Members

Scalar0 The pinned variable is a scalar variable that has a direct value (e.g. int).
CompositePointer1 The pinned variable is a pointer that must be physically read before calling LookupChildren(UInt64).
Composite2 The pinned variable is not a pointer and not a scalar variable. I.e. either a struct, an array, or soemthing completely virtual.

See Also