Share via


DPA

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

This structure implements a dynamic pointer array (DPA).

Syntax

typedef struct _DPA {
  int cp;
  void FAR* FAR* pp;
  HANDLE hheap;
  int cpAlloc;
  int cpGrow;
} DPA;

Members

  • cp
    Integer that specifies the number of pointers in the DPA.
  • pp
    Pointer to the memory for the pointers in the DPA.
  • hheap
    Handle to the memory heap from which to allocate the memory for the pointers. If the value of this parameter is NULL, the shared heap is used.
  • cpAlloc
    Integer that specifies the size of each pointer.
  • cpGrow
    Integer that specifies the number of pointers by which you want to increase the memory that the pp member specifies.

Requirements

Header Pcommctrl.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

TabView_t::Draw