LocalKind enumeration (dbgmodel.h)

The LocalKind enum defines the kind of local that a particular name is (whether an argument to the function or a local variable).

Syntax

typedef enum LocalKind {
  LocalArgument,
  LocalVariable
} ;

Constants

 
LocalArgument
The name is a local argument to the function.
LocalVariable
The name is a local variable of the function.

Remarks

These enums values provide a way to understand the scope and nature of the local within the function.

Requirements

Requirement Value
Header dbgmodel.h

See also

Debugger Data Model C++ Overview