PinnedVariableType Enumeration
Specifies the general type (e.g. scalar/pointer) of a given pinned variable.
Namespace: VisualGDBExtensibility.LiveWatchAssembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
public enum PinnedVariableType
Scalar | 0 |
The pinned variable is a scalar variable that has a direct value (e.g. int).
|
CompositePointer | 1 |
The pinned variable is a pointer that must be physically read before calling LookupChildren(UInt64).
|
Composite | 2 |
The pinned variable is not a pointer and not a scalar variable. I.e. either a struct, an array, or soemthing completely virtual.
|