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.

53 lines
901 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. TimesList.h : header file
  5. CPropertyPage support for User mgmt wizard
  6. File History:
  7. JonY Apr-96 created
  8. --*/
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTimesList window
  11. class CTimesList : public CListBox
  12. {
  13. // Construction
  14. public:
  15. CTimesList();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTimesList)
  23. public:
  24. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CTimesList();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CTimesList)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////