home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / LSPSPR.ZIP / MOUSE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-19  |  209 b   |  18 lines

  1. #include <dos.h>
  2.  
  3.  
  4. int mx,my;
  5.  
  6.  
  7. void     mouse(void)
  8. {
  9.     union REGS state;
  10.  
  11.     state.x.ax=3;
  12.     int86(0x33,&state,&state);
  13.     mx=state.x.cx/2;
  14.     my=state.x.dx;
  15. }
  16.  
  17.  
  18. // NOERROR / GARGOYLE