Source code of Windows XP (NT5)
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.

66 lines
1.4 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*++
  3. Module Name:
  4. ServProp.cpp
  5. Abstract:
  6. This Module contains the implementation of CServerProperties Dialog class
  7. (The Dialog used to disply server properties)
  8. Author:
  9. Arathi Kundapur (v-akunda) 11-Feb-1998
  10. Revision History:
  11. --*/
  12. #include "stdafx.h"
  13. #include "LicMgr.h"
  14. #include "ServProp.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CServerProperties property page
  22. IMPLEMENT_DYNCREATE(CServerProperties, CPropertyPage)
  23. CServerProperties::CServerProperties() : CPropertyPage(CServerProperties::IDD)
  24. {
  25. //{{AFX_DATA_INIT(CServerProperties)
  26. m_ServerName = _T("");
  27. m_Scope = _T("");
  28. //}}AFX_DATA_INIT
  29. }
  30. CServerProperties::~CServerProperties()
  31. {
  32. }
  33. void CServerProperties::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CPropertyPage::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CServerProperties)
  37. DDX_Text(pDX, IDC_SCOPE, m_Scope);
  38. DDX_Text(pDX, IDC_SERVER_NAME, m_ServerName);
  39. //}}AFX_DATA_MAP
  40. }
  41. BEGIN_MESSAGE_MAP(CServerProperties, CPropertyPage)
  42. //{{AFX_MSG_MAP(CServerProperties)
  43. // NOTE: the ClassWizard will add message map macros here
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CServerProperties message handlers