Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 |