mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-27 10:53:06 -04:00
22 lines
380 B
C++
22 lines
380 B
C++
#include <os/registry.h>
|
|
|
|
// TODO: Implement
|
|
inline bool os::registry::Init()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// TODO: read from file?
|
|
template<typename T>
|
|
bool os::registry::ReadValue(const std::string_view& name, T& data)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// TODO: write to file?
|
|
template<typename T>
|
|
bool os::registry::WriteValue(const std::string_view& name, const T& data)
|
|
{
|
|
return false;
|
|
}
|