DPA_Clone(3w)
NAME
DPA_Clone (COMCTL32.331)
SYNOPSIS
HDPA DPA_Clone ( const HDPA hdpa, const HDPA hdpaNew )
DESCRIPTION
Copies a pointer array to an other one or creates a copy.
PARAMS
hdpa [In] handle (pointer) to the existing (source) pointer array.
hdpaNew [Out] handle (pointer) to the destination pointer array.
RETURNS
Success: pointer to the destination pointer array.
Failure: NULL.
NOTES
- If the 'hdpaNew' is a NULL-Pointer, a copy of the source pointer
array will be created and it's handle (pointer) is returned.
- If 'hdpa' is a NULL-Pointer, the original implementation crashes,
this implementation just returns NULL.
IMPLEMENTATION
Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to
the function.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/comctl32/dpa.c".
- Debug channel "dpa".