| 209 | } |
| 210 | |
| 211 | int SortByOwner(const BasicItemInfo_t &itemInfo1, const BasicItemInfo_t &itemInfo2) |
| 212 | { |
| 213 | std::wstring owner1 = GetOwnerColumnText(itemInfo1); |
| 214 | std::wstring owner2 = GetOwnerColumnText(itemInfo2); |
| 215 | |
| 216 | return StrCmpLogicalW(owner1.c_str(), owner2.c_str()); |
| 217 | } |
| 218 | |
| 219 | int SortByVersionInfo(const BasicItemInfo_t &itemInfo1, const BasicItemInfo_t &itemInfo2, |
| 220 | VersionInfoType versionInfoType) |
no test coverage detected