- Add DSA_GetItemCount and DSA_AppendItem. Patch by Sylvain Deverre.
CORE-10838

svn path=/trunk/; revision=71134
This commit is contained in:
Thomas Faber 2016-04-10 09:22:08 +00:00
parent a7c3ff7e94
commit 0f968e68a7

View file

@ -4771,6 +4771,9 @@ typedef struct {
_In_ int i,
_In_ void *pitem);
#define DSA_GetItemCount(hdsa) (*(int *) (hdsa))
#define DSA_AppendItem(hdsa, pitem) DSA_InsertItem (hdsa, DA_LAST, pitem)
typedef struct _DPA *HDPA;
WINCOMMCTRLAPI HDPA WINAPI DPA_Create(int cItemGrow);