DSA_DeleteItem function (dpa_dsa.h)
[DSA_DeleteItem is available through Windows XP with Service Pack 2 (SP2). It might be altered or unavailable in subsequent versions.]
Deletes an item from a dynamic structure array (DSA).
Syntax
BOOL DSA_DeleteItem(
[in] HDSA hdsa,
[in] int i
);
Parameters
[in] hdsa
Type: HDSA
A handle to an existing DSA.
[in] i
Type: int
The zero-based index of the item to delete.
Return value
Type: BOOL
TRUE if the item was successfully deleted; otherwise, FALSE.
Remarks
DSA_DeleteItem is not exported by name. To use it, you must use GetProcAddress and request ordinal 326 from ComCtl32.dll to obtain a function pointer.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | dpa_dsa.h |
DLL | Comctl32.dll (version 4.0 or later) |
API set | ext-ms-win-shell-comctl32-da-l1-1-0 (introduced in Windows 10, version 10.0.14393) |