Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 278 of file entries.cpp.
{ const Entry* entry1 = *(const Entry**)arg1; const Entry* entry2 = *(const Entry**)arg2; int cmp = compareType(entry1, entry2); if (cmp) return cmp; cmp = entry2->_data.nFileSizeHigh - entry1->_data.nFileSizeHigh; if (cmp < 0) return -1; else if (cmp > 0) return 1; cmp = entry2->_data.nFileSizeLow - entry1->_data.nFileSizeLow; return cmp<0? -1: cmp>0? 1: 0; }