|
PARAMDATA
Used to describe a parameter accepted by a method or property.
typedef struct FARSTRUCT tagPARAMDATA {
OLECHAR FAR* szName; // Parameter name
VARTYPE vt; // Parameter type
} PARAMDATA;
The following table describes the fields of the PARAMDATA structure:
Name
| Type
| Description
| szName
| OLECHAR FAR *
| The parameter name. Names should follow standard conventions for programming
language access; that is, no embedded spaces or control characters, and 32 or
fewer characters. This name should be localized, because each type description
describes names for a particular locale.
|
| VARTYPE
| The VARTYPE that will be used by the receiver. If more than one parameter type
is accepted, VT_VARIANT should be specified.
|
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|