8/28/2008 This structure is used by IDispatch::Invoke to contain the arguments passed to a method or property.
typedef struct FARSTRUCT tagDISPPARAMS {
VARIANTARG FAR* rgvarg;
DISPID FAR* rgdispidNamedArgs;
unsigned int cArgs;
unsigned int cNamedArgs;
} DISPPARAMS;
- rgvarg
-
Array of arguments.
- rgdispidNamedArgs
-
Dispatch identifiers of named arguments.
- cArgs
-
Number of arguments.
- cNamedArgs
-
Number of named arguments.
| Header | oleauto.h |
| Windows Embedded CE | Windows CE 2.0 and later |
| Windows Mobile | Windows Mobile Version 5.0 and later |
Reference
Automation Structures
IDispatch::Invoke