DISPPARAMS Data Type
Used by IDispatch::Invoke to contain the arguments passed to a method or property. For more information, see IDispatch::Invoke and Dispatch Interface and API Functions.
typedef struct FARSTRUCT tagDISPPARAMS{
VARIANTARG FAR* rgvarg; // Array of arguments.
DISPID FAR* rgdispidNamedArgs; // Dispatch IDs of named arguments.
Unsigned int cArgs; // Number of arguments.
Unsigned int cNamedArgs; // Number of named arguments.
} DISPPARAMS;
Show: