CAUUID structure (ocidl.h)

Specifies a counted array of UUID or GUID types used to receive an array of CLSIDs for the property pages that the object wants to display.

Syntax

typedef struct tagCAUUID {
  ULONG cElems;
  GUID  *pElems;
} CAUUID, *LPCAUUID;

Members

cElems

The size of the array pointed to by pElems.

pElems

A pointer to an array of values, each of which specifies a CLSID of a particular property page. This array is allocated by the callee using CoTaskMemAlloc and is freed by the caller using CoTaskMemFree.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header ocidl.h

See also

ISpecifyPropertyPages::GetPages