mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[PSDK]
- Add DSA_GetItemCount and DSA_AppendItem. Patch by Sylvain Deverre. CORE-10838 svn path=/trunk/; revision=71134
This commit is contained in:
parent
a7c3ff7e94
commit
0f968e68a7
1 changed files with 3 additions and 0 deletions
|
@ -4771,6 +4771,9 @@ typedef struct {
|
||||||
_In_ int i,
|
_In_ int i,
|
||||||
_In_ void *pitem);
|
_In_ void *pitem);
|
||||||
|
|
||||||
|
#define DSA_GetItemCount(hdsa) (*(int *) (hdsa))
|
||||||
|
#define DSA_AppendItem(hdsa, pitem) DSA_InsertItem (hdsa, DA_LAST, pitem)
|
||||||
|
|
||||||
typedef struct _DPA *HDPA;
|
typedef struct _DPA *HDPA;
|
||||||
|
|
||||||
WINCOMMCTRLAPI HDPA WINAPI DPA_Create(int cItemGrow);
|
WINCOMMCTRLAPI HDPA WINAPI DPA_Create(int cItemGrow);
|
||||||
|
|
Loading…
Reference in a new issue