Leaked source code of windows server 2003
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

  1. #ifndef _ELEM_H_
  2. #define _ELEM_H_
  3. class CElem : public CObject
  4. {
  5. public:
  6. CElem();
  7. ~CElem();
  8. HKEY m_hKey;
  9. int m_index;
  10. CString m_ip;
  11. CString m_name;
  12. CString m_value;
  13. BOOL OpenReg(LPCTSTR szSubKey);
  14. void CloseReg();
  15. BOOL GetNext();
  16. void ReadRegVRoots(LPCTSTR szSubKey, CMapStringToOb *pMap);
  17. void Add(CMapStringToOb *pMap);
  18. };
  19. #endif // _ELEM_H_