MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / DirList_Sort

Function DirList_Sort

src/Dlapi.c:663–672  ·  view source on GitHub ↗

============================================================================= DirList_Sort() Sorts the listview control by the specified order

Source from the content-addressed store, hash-verified

661// Sorts the listview control by the specified order
662//
663BOOL DirList_Sort(HWND hwnd,int lFlags,BOOL fRev)
664{
665
666 if (fRev)
667 return ListView_SortItems(hwnd,DirList_CompareProcRw,lFlags);
668
669 else
670 return ListView_SortItems(hwnd,DirList_CompareProcFw,lFlags);
671
672}
673
674
675//=============================================================================

Callers 1

DirList_FillFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected