2
0
mirror of https://github.com/tenrok/Rfid-Credential-Provider.git synced 2026-06-05 16:52:24 +03:00
Files
2019-11-29 15:55:40 +03:00

8 lines
454 B
C++

#pragma once
#include <iostream>
#include "common.h"
LONG GetDWORDRegKey(HKEY hKey, const std::wstring& strValueName, DWORD& nValue, DWORD nDefaultValue);
LONG GetBoolRegKey(HKEY hKey, const std::wstring& strValueName, bool& bValue, bool bDefaultValue);
LONG GetStringRegKey(HKEY hKey, const std::wstring& strValueName, std::wstring& strValue, const std::wstring& strDefaultValue);
std::string GetCharRegKey(HKEY hKey, const std::wstring& strValueName);