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.

42 lines
1.0 KiB

  1. // Pop3RegKeysUtil.h: interface for the CPop3RegKeysUtil class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)
  5. #define AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CPop3RegKeysUtil
  10. {
  11. public:
  12. CPop3RegKeysUtil();
  13. virtual ~CPop3RegKeysUtil();
  14. // Implementation
  15. public:
  16. HRESULT Save();
  17. HRESULT Restore();
  18. // Attributes
  19. protected:
  20. DWORD m_dwAuthType;
  21. DWORD m_dwCreateUser;
  22. DWORD m_dwPort;
  23. DWORD m_dwLoggingLevel;
  24. DWORD m_dwSocketBacklog;
  25. DWORD m_dwSocketMin;
  26. DWORD m_dwSocketMax;
  27. DWORD m_dwSocketThreshold;
  28. DWORD m_dwSPARequired;
  29. DWORD m_dwThreadcount;
  30. TCHAR m_sAuthGuid[MAX_PATH];
  31. TCHAR m_sGreeting[MAX_PATH];
  32. TCHAR m_sMailRoot[MAX_PATH];
  33. };
  34. #endif // !defined(AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)