mirror of
https://github.com/reactos/reactos.git
synced 2026-05-24 00:00:41 +08:00
Resource names are sorted with '_' being higher than any alphabetic characters. This means _wcsicmp cannot be used to search, because it lowercases the characters before comparison, which would make '_' lower than lowercase alphabetic characters. Implement a custom compare function instead. See CORE-20401, CORE-20408