Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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 |