Counter Strike : Global Offensive Source Code
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.

45 lines
946 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // searchbx.h : header file
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSearchBox window
  11. class CSearchBox : public CComboBox
  12. {
  13. // Construction
  14. public:
  15. CSearchBox();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CSearchBox)
  23. public:
  24. virtual BOOL PreTranslateMessage(MSG* pMsg);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CSearchBox();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CSearchBox)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////