DPA (Windows Embedded CE 6.0)
1/6/2010
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 |