refactor: remove unused ArchMiscWindows::readValueBinary

This commit is contained in:
sithlord48
2025-03-22 19:01:31 -04:00
committed by Nick Bolton
parent 9c44653fff
commit 75e852d95f
2 changed files with 0 additions and 8 deletions

View File

@ -243,11 +243,6 @@ std::string ArchMiscWindows::readValueString(HKEY key, const TCHAR *name)
return readBinaryOrString(key, name, REG_SZ);
}
std::string ArchMiscWindows::readValueBinary(HKEY key, const TCHAR *name)
{
return readBinaryOrString(key, name, REG_BINARY);
}
DWORD
ArchMiscWindows::readValueInt(HKEY key, const TCHAR *name)
{

View File

@ -101,9 +101,6 @@ public:
//! Read a DWORD value from the registry
static DWORD readValueInt(HKEY, const TCHAR *name);
//! Read a BINARY value from the registry
static std::string readValueBinary(HKEY, const TCHAR *name);
//! Add a dialog
static void addDialog(HWND);