Partager via


DPA

This structure implements a dynamic pointer array (DPA).

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

OS Versions: Windows CE .NET 4.0 and later.
Header: Pcommctrl.h.

See Also

TabView_t::Draw

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.