Source code of Windows XP (NT5)
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.

75 lines
1.6 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*++
  3. Module Name:
  4. AddLic.h
  5. Abstract:
  6. This Module defines the CAddLicenses Dialog class
  7. (Dialog box used for adding Licenses)
  8. Author:
  9. Arathi Kundapur (v-akunda) 22-Feb-1998
  10. Revision History:
  11. --*/
  12. #if !defined(AFX_ADDLIC_H__EA547D83_A88B_11D1_84DD_00C04FB6CBB5__INCLUDED_)
  13. #define AFX_ADDLIC_H__EA547D83_A88B_11D1_84DD_00C04FB6CBB5__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #endif // _MSC_VER >= 1000
  16. // AddLic.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CAddLicenses dialog
  20. class CAddLicenses : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CAddLicenses(CWnd* pParent = NULL); // standard constructor
  25. CAddLicenses(CAddKeyPack *pAddKeyPack,CWnd* pParent = NULL);
  26. // Dialog Data
  27. //{{AFX_DATA(CAddLicenses)
  28. enum { IDD = IDD_ADD_LICENSES };
  29. CSpinButtonCtrl m_SpinCtrl;
  30. CComboBox m_LicenseCombo;
  31. CString m_LicensePack;
  32. DWORD m_NumLicenses;
  33. //}}AFX_DATA
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CAddLicenses)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CAddLicenses)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnHelp();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. private:
  49. CAddKeyPack * m_pAddKeyPack;
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_ADDLIC_H__EA547D83_A88B_11D1_84DD_00C04FB6CBB5__INCLUDED_)