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.

35 lines
619 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. //
  9. // defines ids of parts of the status bar
  10. //
  11. enum
  12. {
  13. ID_INDICATOR_FIRST = 0xE720,
  14. ID_INDICATOR_SELECTION,
  15. ID_INDICATOR_COORDS,
  16. ID_INDICATOR_SIZE,
  17. ID_INDICATOR_GRIDZOOM,
  18. ID_INDICATOR_SNAP,
  19. ID_INDICATOR_LIGHTPROGRESS
  20. };
  21. enum
  22. {
  23. SBI_PROMPT = 0,
  24. SBI_SELECTION,
  25. SBI_COORDS,
  26. SBI_SIZE,
  27. SBI_GRIDZOOM,
  28. SBI_SNAP,
  29. SBI_LIGHTPROGRESS
  30. };
  31. // mainfrm.cpp:
  32. void SetStatusText(int nIndex, LPCTSTR pszText);