MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / GetString

Method GetString

WinArk/Settings.cpp:165–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165std::wstring Settings::GetString(PCWSTR name) const {
166 auto it = _settings.find(name);
167 if (it == _settings.end())
168 return L"";
169 return (PCWSTR)it->second.Buffer.get();
170}
171
172int Settings::GetInt32(PCWSTR name) const {
173 return GetValue<int>(name);

Callers 15

ParseTableEntryMethod · 0.80
CheckIATHookMethod · 0.80
GetSingleSSDTInfoMethod · 0.80
GetSingleNotifyInfoMethod · 0.80
ParseTableEntryMethod · 0.80
GetSingleHookInfoMethod · 0.80
PaintTableMethod · 0.80

Calls 1

endMethod · 0.45

Tested by

no test coverage detected