home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vcslid / slidetst.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-09  |  1014 b   |  37 lines

  1. /*
  2.  * MUSCROLL.H
  3.  *
  4.  * Contains definitions specific to the MicroScroll test
  5.  * application, such as control identifiers, menu item
  6.  * identifiers, and internal function prototypes.
  7.  *
  8.  */
  9.  
  10.  
  11. //Menu identifiers.
  12. #define IDM_EXIT           100
  13. #define IDM_ENABLEHORZ     101
  14. #define IDM_DISABLEHORZ    102
  15. #define IDM_ENABLEVERT     103
  16. #define IDM_DISABLEVERT    104
  17. #define IDM_GETRANGEHORZ   105
  18. #define IDM_SETRANGEHORZ   106
  19. #define IDM_GETRANGEVERT   107
  20. #define IDM_SETRANGEVERT   108
  21. #define IDM_SETPOSVERT     109
  22. #define IDM_SETPOSHORZ     110
  23.  
  24. //Control Identifiers.
  25. #define ID_NULL             -1
  26. #define ID_VERTEDIT         300
  27. #define ID_HORZEDIT         301
  28. #define ID_HORZSCROLL       302
  29. #define ID_VERTSCROLL       303
  30. #define ID_INFO             304
  31. #define IDC_LOW             10
  32. #define IDC_HIGH            11
  33.  
  34. //Function prototypes.
  35. long     FAR PASCAL slidetstWndProc(HWND, UINT, WPARAM, LPARAM);
  36. BOOL     FAR PASCAL setRangeDlgProc(HWND, UINT, WPARAM, LPARAM);
  37.