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.

62 lines
1.0 KiB

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