Share via


TreeView_SortChildrenCB

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This macro sorts tree-view items using an application-defined callback function that compares the items. You can use this macro or send the TVM_SORTCHILDRENCB message explicitly.

Syntax

BOOL TreeView_SortChildrenCB( 
    hwnd, 
    psort, 
    fRecurse 
);

Parameters

  • hwnd
    Handle to the tree view control.
  • psort
    Pointer to a TVSORTCB structure. The lpfnCompare member is the address of the application-defined callback function, which is called during the sort operation each time the relative order of two list items needs to be compared. For more information about the callback function, see the description of TVSORTCB.
  • fRecurse
    Reserved for future use; set to zero.

Return Value

TRUE indicates success. FALSE indicates failure.

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

TVM_SORTCHILDRENCB
TVSORTCB