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.
23 lines
419 B
23 lines
419 B
#ifndef _ELEM_H_
|
|
#define _ELEM_H_
|
|
|
|
class CElem : public CObject
|
|
{
|
|
public:
|
|
CElem();
|
|
~CElem();
|
|
|
|
HKEY m_hKey;
|
|
int m_index;
|
|
CString m_ip;
|
|
CString m_name;
|
|
CString m_value;
|
|
|
|
BOOL OpenReg(LPCTSTR szSubKey);
|
|
void CloseReg();
|
|
BOOL GetNext();
|
|
void ReadRegVRoots(LPCTSTR szSubKey, CMapStringToOb *pMap);
|
|
void Add(CMapStringToOb *pMap);
|
|
};
|
|
|
|
#endif // _ELEM_H_
|