VarArgsKind enumeration (dbgmodel.h)

Defines the style of variable arguments that a function definition takes.

Syntax

typedef enum VarArgsKind {
  VarArgsNone,
  VarArgsCStyle
} ;

Constants

 
VarArgsNone
The function does not take any variable arguments.
VarArgsCStyle
The 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

See also

Debugger Data Model C++ Overview