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.

59 lines
984 B

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