home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / msdos / graphics / tcxl.arc / TCXLMOU.H < prev    next >
Text File  |  1988-04-16  |  1KB  |  35 lines

  1.  
  2. /*
  3.    ┌──────────────────────────────────────────────────────────────────────────┐
  4.    │                                                                          │
  5.    │  TCXLMOU.H - TCXL (c) 1987, 1988 by Mike Smedley.                        │
  6.    │                                                                          │
  7.    │  This header file contains function prototypes and definitions for       │
  8.    │  Microsoft compatible mouse functions.                                   │
  9.    │                                                                          │
  10.    └──────────────────────────────────────────────────────────────────────────┘
  11. */
  12.  
  13.  
  14. #if __STDC__
  15. #define _Cdecl
  16. #else
  17. #define _Cdecl cdecl
  18. #endif
  19.  
  20.  
  21. /*---------------------------[ Function Prototypes ]-------------------------*/
  22.  
  23. void    _Cdecl msbpress(int button,int *bstat,int *bcount,int *x,int *y);
  24. void    _Cdecl msbreles(int button,int *bstat,int *bcount,int *x,int *y);
  25. void    _Cdecl mscursor(int curtype,int smask,int cmask);
  26. void    _Cdecl msgotoxy(int x,int y);
  27. void    _Cdecl mshbounds(int left,int right);
  28. void    _Cdecl mshidecur(void);
  29. int     _Cdecl msinit(void);
  30. void    _Cdecl msmotion(int *xcount,int *ycount);
  31. void    _Cdecl msshowcur(void);
  32. void    _Cdecl msspeed(int xratio,int yratio);
  33. void    _Cdecl msstatus(int *bstat,int *x,int *y);
  34. void    _Cdecl msvbounds(int top,int bottom);
  35.