CAUUID (Windows CE 5.0)

Send Feedback

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

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 CoTaskMemAlloc and is freed by the caller using CoTaskMemFree.

Requirements

OS Versions: Windows CE 4.0 and later.
Header: Ocidl.h.

See Also

ISpecifyPropertyPages::GetPages

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.