refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -6,15 +6,15 @@ class WstringLookup
{
private:
UINT numIDs;
std::unordered_map<wstring, UINT> str2int;
vector<wstring> int2str;
std::unordered_map<std::wstring, UINT> str2int;
vector<std::wstring> int2str;
public:
WstringLookup();
wstring lookup(UINT id);
std::wstring lookup(UINT id);
UINT lookup(wstring);
UINT lookup(std::wstring);
VOID getTable(wstring **lookup, UINT *len);
VOID getTable(std::wstring **lookup, UINT *len);
};