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.
17 lines
336 B
17 lines
336 B
#ifndef __REGSPRTB_H
|
|
#define __REGSPRTB_H
|
|
|
|
#include "regsuprt.h"
|
|
|
|
class CRegSupportBuf : public CRegSupport
|
|
{
|
|
protected:
|
|
BOOL _InitSetRoot(LPCTSTR pszSubKey1, LPCTSTR pszSubKey2);
|
|
|
|
LPCTSTR _GetRoot(LPTSTR pszRoot, DWORD cchRoot);
|
|
|
|
private:
|
|
TCHAR _szRoot[MAX_PATH];
|
|
};
|
|
|
|
#endif //__REGSPRTB_H
|