You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
636 B
27 lines
636 B
#pragma once
|
|
#define STRICT
|
|
#include <windows.h>
|
|
#include <crtdbg.h>
|
|
|
|
class CMcRegistry
|
|
{
|
|
public:
|
|
CMcRegistry();
|
|
~CMcRegistry();
|
|
|
|
public:
|
|
bool OpenKey(HKEY hkeyStart, LPCTSTR strKey, REGSAM sam = KEY_READ | KEY_WRITE);
|
|
bool CreateKey(HKEY hkeyStart, LPCTSTR strKey);
|
|
bool CloseKey();
|
|
|
|
bool GetValue(LPCTSTR strValue, LPTSTR strData, ULONG nBufferSize);
|
|
bool GetValue(LPCTSTR strValue, DWORD& rdw);
|
|
|
|
bool SetValue(LPCTSTR strValue, LPCTSTR strData);
|
|
bool SetValue(LPCTSTR strValue, DWORD rdw);
|
|
|
|
private:
|
|
HKEY m_hkey;
|
|
};
|
|
|
|
//---------------------------------------------------------------------------
|