Scroll to navigation

DSA_Create(3w) Wine API DSA_Create(3w)

NAME

DSA_Create (COMCTL32.320)

SYNOPSIS

HDSA DSA_Create
(
INT nSize,
INT nGrow
)
 

DESCRIPTION

Creates a dynamic storage array.
 

PARAMS

nSize [In] size of the array elements.
nGrow [In] number of elements by which the array grows when it is filled.
 

RETURNS

Success: pointer to an array control structure. Use this like a handle.
Failure: NULL.
 

NOTES

The DSA_ functions can be used to create and manipulate arrays of fixed-size memory blocks. These arrays can store any kind of data (e.g. strings and icons).
 

IMPLEMENTATION

Declared in "commctrl.h".
Implemented in "dlls/comctl32/dsa.c".
Debug channel "dsa".
Oct 2012 Wine API