| 10740 | |
| 10741 | |
| 10742 | int CALLBACK LV_Int32Sort(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort) |
| 10743 | { |
| 10744 | // Caller-provided value of lParamSort is TRUE (non-zero) when ascending order is desired. |
| 10745 | // MSDN: "return a negative value if the first item should precede the second" |
| 10746 | return (int)(lParamSort ? (lParam1 - lParam2) : (lParam2 - lParam1)); |
| 10747 | } |
| 10748 | |
| 10749 | |
| 10750 |
nothing calls this directly
no outgoing calls
no test coverage detected