15 bool KeyExists(HKEY root,
const std::wstring& key,
const std::wstring& name = L
"");
24 std::wstring
GetStringValue(HKEY root,
const std::wstring& key,
const std::wstring& name = L
"");
34 void CopyBranch(HKEY sourceRoot,
const std::wstring& keySrcRoot, HKEY destRoot,
const std::wstring& keyDestRoot);
50 void CreateKey(HKEY root,
const std::wstring& key);
60 void SetStringValue(HKEY root,
const std::wstring& key,
const std::wstring &name,
const std::wstring& value);
void CreateKey(HKEY root, const std::wstring &key)
Definition: Registry.cpp:160
void SetStringValue(HKEY root, const std::wstring &key, const std::wstring &name, const std::wstring &value)
Definition: Registry.cpp:171
std::wstring GetStringValue(HKEY root, const std::wstring &key, const std::wstring &name=L"")
Definition: Registry.cpp:47
void DeleteBranch(HKEY root, const std::wstring &key)
Definition: Registry.cpp:130
bool KeyExists(HKEY root, const std::wstring &key, const std::wstring &name=L"")
Definition: Registry.cpp:4
void CopyBranch(HKEY sourceRoot, const std::wstring &keySrcRoot, HKEY destRoot, const std::wstring &keyDestRoot)
Definition: Registry.cpp:79