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.

28 lines
905 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: T R A Y M S G S . H
  7. //
  8. // Contents: Tray WM_ messages, for use in the icon window proc
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 13 Nov 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef _TRAYMSGS_H_
  16. #define _TRAYMSGS_H_
  17. #define MYWM_NOTIFYICON (WM_USER+1)
  18. #define MYWM_OPENSTATUS (WM_USER+2)
  19. #define MYWM_ADDTRAYICON (WM_USER+3)
  20. #define MYWM_REMOVETRAYICON (WM_USER+4)
  21. #define MYWM_UPDATETRAYICON (WM_USER+5)
  22. #define MYWM_FLUSHNOOP (WM_USER+6) // For flushing the tray messages via SendMessage()
  23. #define MYWM_SHOWBALLOON (WM_USER+7) // For update tray-icon text
  24. #endif // _TRAYMSGS_H_