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.
|
|
// Pop3RegKeysUtil.h: interface for the CPop3RegKeysUtil class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)
#define AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CPop3RegKeysUtil { public: CPop3RegKeysUtil(); virtual ~CPop3RegKeysUtil();
// Implementation
public: HRESULT Save(); HRESULT Restore(); // Attributes
protected: DWORD m_dwAuthType; DWORD m_dwCreateUser; DWORD m_dwPort; DWORD m_dwLoggingLevel; DWORD m_dwSocketBacklog; DWORD m_dwSocketMin; DWORD m_dwSocketMax; DWORD m_dwSocketThreshold; DWORD m_dwSPARequired; DWORD m_dwThreadcount; TCHAR m_sAuthGuid[MAX_PATH]; TCHAR m_sGreeting[MAX_PATH]; TCHAR m_sMailRoot[MAX_PATH]; };
#endif // !defined(AFX_Pop3RegKeysUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)
|