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.
Defines the style of variable arguments that a function definition takes.
Syntax
typedef enum VarArgsKind {
VarArgsNone,
VarArgsCStyle
} ;
Constants
VarArgsNoneThe function does not take any variable arguments. |
VarArgsCStyleThe function is a C-style varargs function (returnType(arg1, arg2, ...)). The number of arguments reported by the function does not include the ellipsis argument. Any variable argument passing occurs after the number of arguments returned by the GetFunctionParameterTypeCount method. |
Requirements
| Requirement | Value |
|---|---|
| Header | dbgmodel.h |