#include "precomp.h"
#include "listview.h"
Go to the source code of this file.
◆ PSort
◆ Sort
◆ ListView_SortEx()
BOOL ListView_SortEx |
( |
HWND |
hListView, |
|
|
int |
iSortingColumn, |
|
|
int |
iSortedColumn |
|
) |
| |
Definition at line 43 of file listview.c.
70 bSortAsc = !(hColumn.lParam == 2);
74 hColumn.lParam = (
LPARAM)(bSortAsc ? 2 : 1);
78 sort.bSortAsc = bSortAsc;
79 sort.hList = hListView;
80 sort.nClickedColumn = iSortingColumn;
#define ListView_GetHeader(hwnd)
_STLP_MOVE_TO_STD_NAMESPACE void sort(_RandomAccessIter __first, _RandomAccessIter __last)
#define Header_GetItem(hwndHD, i, phdi)
int CALLBACK SortListView(LPARAM lItemParam1, LPARAM lItemParam2, LPARAM lPSort_S)
#define ListView_SortItemsEx(hwndLV, _pfnCompare, _lPrm)
#define Header_SetItem(hwndHD, i, phdi)
Referenced by ServicesPageWndProc(), and ToolsPageWndProc().
◆ SortListView()
Definition at line 22 of file listview.c.
28 int iItem1 = (
int)lItemParam1;
29 int iItem2 = (
int)lItemParam2;
#define ListView_GetItemText(hwndLV, i, iSubItem_, pszText_, cchTextMax_)
INT WINAPI StrCmpLogicalW(LPCWSTR lpszStr, LPCWSTR lpszComp)
Referenced by ListView_SortEx().