home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectInput / DIConfig / flexmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-08  |  1.0 KB  |  36 lines

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