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.

35 lines
1003 B

  1. //-----------------------------------------------------------------------------
  2. // File: flexmsg.h
  3. //
  4. // Desc: Contains definitions of private messages used by the UI.
  5. //
  6. // Copyright (C) 1999-2000 Microsoft Corporation. All Rights Reserved.
  7. //-----------------------------------------------------------------------------
  8. #ifndef __FLEXMSG_H__
  9. #define __FLEXMSG_H__
  10. #define WM_CFGUIRESET (WM_USER + 6)
  11. #ifndef WM_FLEXMSGBASE
  12. #define WM_FLEXMSGBASE (WM_USER + 7)
  13. #endif
  14. #define WM_GETFLEXWND (WM_FLEXMSGBASE + 0)
  15. #define WM_FLEXTREENOTIFY (WM_FLEXMSGBASE + 1)
  16. #define WM_FLEXVSCROLL (WM_FLEXMSGBASE + 2)
  17. #define WM_FLEXHSCROLL (WM_FLEXMSGBASE + 3)
  18. #define WM_FLEXLISTBOX (WM_FLEXMSGBASE + 4)
  19. #define WM_FLEXCOMBOBOX (WM_FLEXMSGBASE + 5)
  20. #define WM_FLEXCHECKBOX (WM_FLEXMSGBASE + 6)
  21. #define WM_DIRENDER (WM_FLEXMSGBASE + 7)
  22. #define WM_UNHIGHLIGHT (WM_FLEXMSGBASE + 8)
  23. #ifndef WM_MOUSEWHEEL
  24. #define WM_MOUSEWHEEL 0x020A
  25. #endif
  26. #endif //__FLEXMSG_H__