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

  1. extern "C"
  2. {
  3. #include "slider.h"
  4.  
  5. class CSlider: public CScrollBar
  6. {
  7. public:
  8.     CSlider(HWND hWnd,WORD id,DWORD dwStyles,LPSTR szTitle,int x, int y, int width, int height);
  9.     ~CSlider();
  10.     WORD getPos();
  11.     void setPos(WORD wPos);
  12.     LONG getRange();     
  13.     void setRange(WORD wLow,WORD wHigh);
  14.  
  15. };