home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cslio205.zip / INCLUDE / CSCURS.H < prev    next >
C/C++ Source or Header  |  1997-01-21  |  849b  |  31 lines

  1. /***********************************************************************
  2.  
  3.                        CSA Library, Free Evaluation Version 2.0.5 
  4.                                        Release: January 22th 1997 
  5.  
  6.        Functions to manipulate the cursor.
  7.  
  8.                                            Copyright(c) 1994-1997 
  9.                                                           ComBits 
  10.                                                   The Netherlands 
  11. ***********************************************************************/
  12.  
  13.  
  14.  
  15. #ifndef _CSCURS_H
  16. #define _CSCURS_H
  17.  
  18. #define CURSOR 7
  19.  
  20. void cursor_size(int lo, int hi);
  21. void cursor_on(void);
  22. void cursor_off(void);
  23. void setcursor(unsigned int shape);
  24. unsigned int getcursor(void);
  25. void changecursor(int insmode);
  26. void initcursor(void);
  27. void setoldcursor(void);
  28.  
  29.  
  30. #endif
  31.