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". https://source.winehq.org/source/include/commctrl.h

Implemented in "dlls/comctl32/dsa.c". https://source.winehq.org/source/dlls/comctl32/dsa.c

Debug channel "dsa".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated May 2024.