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.

39 lines
748 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef CUSTOMMESSAGES_H
  8. #define CUSTOMMESSAGES_H
  9. #pragma once
  10. enum
  11. {
  12. CUSTOMMESSAGESSTART = WM_USER + 1,
  13. WM_MAPDOC_CHANGED,
  14. WM_DOCTYPE_CHANGED,
  15. WM_GAME_CHANGED,
  16. //
  17. // Posted by CAngleBox:
  18. //
  19. ABN_CHANGED, // The angle in the angle box has changed.
  20. //
  21. // Posted by CTextureWindow:
  22. //
  23. TWN_SELCHANGED, // The texture window selection has changed.
  24. TWN_LBUTTONDBLCLK, // The user double clicked in the texture window.
  25. //
  26. // Posted by CLightingPreviewResultsWindow
  27. //
  28. LPRV_WINDOWCLOSED,
  29. };
  30. #endif // CUSTOMMESSAGES_H