Open rdbo opened 1 month ago
E.g client.dll will match against nottheclient.dll It should try as hard as it can to match client.dll only, and only match path if there is no alternative or smth
client.dll
nottheclient.dll
maybe do:
if path_separator in mod_name: match_path() else: match_name()
Or
path_match = ... name_match = ...
if (name_match) return name_match; else return path_match
E.g
client.dll
will match againstnottheclient.dll
It should try as hard as it can to matchclient.dll
only, and only match path if there is no alternative or smth