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

The CAUUID structure is a Counted Array of UUID or GUID types. It is used, for example, in the ISpecifyPropertyPages::GetPagesmethod to receive an array of CLSIDs for the property pages that the object wants displayed.

Syntax

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

Members

cElems

Size of the array pointed to by pElems.

pElems

Pointer to an array of UUID values, each of which specifies a CLSID of a particular property page. This array is allocated by the callee using CoTaskMemAllocand is freed by the caller using CoTaskMemFree.

Requirements

Header ocidl.h
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also