Scroll to navigation

DPA_Merge(3w) Wine API DPA_Merge(3w)

NAME

DPA_Merge (COMCTL32.11)

SYNOPSIS

BOOL DPA_Merge
(
HDPA hdpa1,
HDPA hdpa2,
DWORD dwFlags,
PFNDPACOMPARE pfnCompare,
PFNDPAMERGE pfnMerge,
LPARAM lParam
)
 

DESCRIPTION

Merge two dynamic pointers arrays.
 

PARAMS

hdpa1 [In] handle to a dynamic pointer array.
hdpa2 [In] handle to a dynamic pointer array.
dwFlags [In] flags.
pfnCompare [In] pointer to sort function.
pfnMerge [In] pointer to merge function.
lParam [In] application specific value.
 

RETURNS

Success: TRUE
Failure: FALSE.
 

NOTES

No more information available yet!
 

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.
Implemented in "dlls/comctl32/dpa.c".
Debug channel "dpa".
Oct 2012 Wine API