============================================================================= DirList_Sort() Sorts the listview control by the specified order
| 661 | // Sorts the listview control by the specified order |
| 662 | // |
| 663 | BOOL 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 | //============================================================================= |