home *** CD-ROM | disk | FTP | other *** search
/ Beginning Direct3D Game Programming / Direct3D.iso / directx / dxf / samples / multimedia / directinput / diconfig / flexmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-22  |  870 b   |  29 lines

  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.  
  9. #ifndef __FLEXMSG_H__
  10. #define __FLEXMSG_H__
  11.  
  12.  
  13. #ifndef WM_FLEXMSGBASE
  14. #define WM_FLEXMSGBASE    (WM_USER + 7)
  15. #endif
  16.  
  17.  
  18. #define WM_GETFLEXWND     (WM_FLEXMSGBASE + 0)
  19. #define WM_FLEXTREENOTIFY (WM_FLEXMSGBASE + 1)
  20. #define WM_FLEXVSCROLL    (WM_FLEXMSGBASE + 2)
  21. #define WM_FLEXHSCROLL    (WM_FLEXMSGBASE + 3)
  22. #define WM_FLEXLISTBOX    (WM_FLEXMSGBASE + 4)
  23. #define WM_FLEXCOMBOBOX   (WM_FLEXMSGBASE + 5)
  24. #define WM_FLEXCHECKBOX   (WM_FLEXMSGBASE + 6)
  25. #define WM_DIRENDER       (WM_FLEXMSGBASE + 7)
  26.  
  27.  
  28. #endif //__FLEXMSG_H__
  29.