Functions | |
| bool | TryParseRegistryPath (const std::filesystem::path &in_rPath, HKEY &out_rHKey, std::wstring &out_rSubKey) |
| template<typename T> | |
| bool | Read (const std::filesystem::path &in_rPath, const std::filesystem::path &in_rValueName, T &out_rData) |
| template<typename T> | |
| bool | Read (const std::filesystem::path &in_rPath, T &out_rData) |
| template<typename T> | |
| bool | Write (const std::filesystem::path &in_rPath, const std::filesystem::path &in_rValueName, const T &in_rData) |
| template<typename T> | |
| bool | Write (const std::filesystem::path &in_rPath, const T &in_rData) |
|
inline |
Reads a value from the registry.
| in_rPath | The path to the registry key containing the value. |
| in_rValueName | The name of the registry value. |
| out_rData | The value to set. |
|
inline |
Reads a value from the registry.
| in_rPath | The path to the registry value. |
| out_rData | The value to set. |
|
inline |
|
inline |
Writes a value to the registry.
| in_rPath | The path to the registry key containing the value. |
| in_rValueName | The name of the registry value. |
| in_rData | The value to write. |
|
inline |
Writes a value to the registry.
| in_rPath | The path to the registry value. |
| in_rData | The value to write. |