Home
last modified time | relevance | path

Searched refs:hdsa (Results 1 – 2 of 2) sorted by relevance

/reactos/dll/win32/comctl32/
H A Ddsa.c73 HDSA hdsa; in DSA_Create() local
77 hdsa = Alloc (sizeof(*hdsa)); in DSA_Create()
78 if (hdsa) in DSA_Create()
110 if (hdsa->pData && (!Free (hdsa->pData))) in DSA_Destroy()
266 if (hdsa->nItemCount >= hdsa->nMaxCount) { in DSA_InsertItem()
267 nNewItems = hdsa->nMaxCount + hdsa->nGrow; in DSA_InsertItem()
340 if ((hdsa->nMaxCount - hdsa->nItemCount) >= hdsa->nGrow) { in DSA_DeleteItem()
341 nSize = hdsa->nItemSize * hdsa->nItemCount; in DSA_DeleteItem()
347 hdsa->nMaxCount = hdsa->nItemCount; in DSA_DeleteItem()
373 if (hdsa->pData && (!Free (hdsa->pData))) in DSA_DeleteAllItems()
[all …]
/reactos/sdk/include/psdk/
H A Dcommctrl.h4801 WINCOMMCTRLAPI BOOL WINAPI DSA_Destroy(_Inout_opt_ HDSA hdsa);
4807 _Inout_opt_ HDSA hdsa,
4815 _In_ HDSA hdsa,
4819 WINCOMMCTRLAPI PVOID WINAPI DSA_GetItemPtr(_In_ HDSA hdsa, int i);
4821 WINCOMMCTRLAPI BOOL WINAPI DSA_DeleteAllItems(_In_ HDSA hdsa);
4827 _Inout_ HDSA hdsa,
4831 #define DSA_GetItemCount(hdsa) (*(int *) (hdsa)) argument
4832 #define DSA_AppendItem(hdsa, pitem) DSA_InsertItem (hdsa, DA_LAST, pitem) argument