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.

60 lines
1.0 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. --*/
  13. #ifndef _PSRVDLG_H_
  14. #define _PSRVDLG_H_
  15. class CPerServerLicensingDialog : public CDialog
  16. {
  17. public:
  18. CString m_strProduct;
  19. CString m_strLicenses;
  20. public:
  21. CPerServerLicensingDialog(CWnd* pParent = NULL);
  22. //{{AFX_DATA(CPerServerLicensingDialog)
  23. enum { IDD = IDD_PER_SERVER_LICENSING };
  24. CButton m_agreeBtn;
  25. CButton m_okBtn;
  26. CString m_strStaticClients;
  27. //}}AFX_DATA
  28. //{{AFX_VIRTUAL(CPerServerLicensingDialog)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);
  31. //}}AFX_VIRTUAL
  32. protected:
  33. //{{AFX_MSG(CPerServerLicensingDialog)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnAgree();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. #endif // _PSRVDLG_H_