home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_08 / 9n08042a < prev    next >
Text File  |  1991-04-20  |  241b  |  10 lines

  1. /* mouse.h mouse functions C.1991 Dave Newman*/
  2. #ifndef _MOUSE
  3. #define _MOUSE
  4. int mouse_init(void);
  5. void mouse_cursor(int);
  6. void mouse_set_cursor(int,int);
  7. void mouse_text_cursor(int,int);
  8. void mouse_status(int *,int*,int*);
  9. #endif
  10.