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.

53 lines
925 B

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. srvldlg.h
  5. Abstract:
  6. Server licensing dialog implementation.
  7. Author:
  8. Don Ryan (donryan) 03-Mar-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _SRVLDLG_H_
  14. #define _SRVLDLG_H_
  15. class CServerLicensingDialog : public CDialog
  16. {
  17. public:
  18. CServerLicensingDialog(CWnd* pParent = NULL);
  19. //{{AFX_DATA(CServerLicensingDialog)
  20. enum { IDD = IDD_SERVER_LICENSING };
  21. CButton m_okBtn;
  22. CButton m_agreeBtn;
  23. BOOL m_bAgree;
  24. //}}AFX_DATA
  25. //{{AFX_VIRTUAL(CServerLicensingDialog)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);
  28. //}}AFX_VIRTUAL
  29. protected:
  30. //{{AFX_MSG(CServerLicensingDialog)
  31. virtual BOOL OnInitDialog();
  32. afx_msg void OnAgree();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #endif // _SRVLDLG_H_