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.

92 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. NWLim.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWorkstationList window
  10. class CWorkstationList : public CListBox
  11. {
  12. // Construction
  13. public:
  14. CWorkstationList();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CWorkstationList)
  22. public:
  23. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24. virtual int CompareItem(LPCOMPAREITEMSTRUCT lpCompareItemStruct);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CWorkstationList();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CWorkstationList)
  32. afx_msg void OnDestroy();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CNWLimitLogon dialog
  39. class CNWLimitLogon : public CPropertyPage
  40. {
  41. DECLARE_DYNCREATE(CNWLimitLogon)
  42. // Construction
  43. public:
  44. CNWLimitLogon(); // standard constructor
  45. // Dialog Data
  46. //{{AFX_DATA(CNWLimitLogon)
  47. enum { IDD = IDD_NWLOGON_DIALOG };
  48. CWorkstationList m_lbWksList;
  49. int m_nWorkstationRadio;
  50. CString m_csCaption;
  51. //}}AFX_DATA
  52. // Overrides
  53. // ClassWizard generated virtual function overrides
  54. //{{AFX_VIRTUAL(CNWLimitLogon)
  55. protected:
  56. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  57. //}}AFX_VIRTUAL
  58. LRESULT OnWizardNext();
  59. LRESULT OnWizardBack();
  60. // Implementation
  61. protected:
  62. // Generated message map functions
  63. //{{AFX_MSG(CNWLimitLogon)
  64. afx_msg void OnAddButton();
  65. afx_msg void OnRemoveButton();
  66. afx_msg void OnWorkstationRadio();
  67. afx_msg void OnWorkstationRadio2();
  68. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. };