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).
typedef enum LocalKind {
LocalArgument,
LocalVariable
} ;
LocalArgument The name is a local argument to the function. |
LocalVariable The name is a local variable of the function. |
These enums values provide a way to understand the scope and nature of the local within the function.
Requirement | Value |
---|---|
Header | dbgmodel.h |