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.

63 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. psrvdlg.h
  5. Abstract:
  6. Per server confirmation dialog.
  7. Author:
  8. Don Ryan (donryan) 28-Feb-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. Jeff Parham (jeffparh) 15-Dec-1995
  13. Robbed from LLSMGR.
  14. --*/
  15. #ifndef _PSRVDLG_H_
  16. #define _PSRVDLG_H_
  17. class CPerServerLicensingDialog : public CDialog
  18. {
  19. public:
  20. CString m_strProduct;
  21. CString m_strLicenses;
  22. public:
  23. CPerServerLicensingDialog(CWnd* pParent = NULL);
  24. //{{AFX_DATA(CPerServerLicensingDialog)
  25. enum { IDD = IDD_PER_SERVER_LICENSING };
  26. CButton m_agreeBtn;
  27. CButton m_okBtn;
  28. CString m_strStaticClients;
  29. //}}AFX_DATA
  30. //{{AFX_VIRTUAL(CPerServerLicensingDialog)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);
  33. //}}AFX_VIRTUAL
  34. protected:
  35. //{{AFX_MSG(CPerServerLicensingDialog)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnAgree();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. #endif // _PSRVDLG_H_