Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure is used to describe a parameter accepted by a method or property.

Syntax

typedef struct FARSTRUCT tagPARAMDATA {
  OLECHAR FAR* 
szName;
  VARTYPE 
vtReturn;
} PARAMDATA;

Members

szName

Null-terminated string that contains 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. The name should be localized because each type description provides names for a particular locale.

vtReturn

VARTYPE that is used by the receiver. If more than one parameter type is accepted, VT_VARIANT should be specified.

Requirements

Header oleauto.h
Windows Embedded CE Windows CE 2.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also