home *** CD-ROM | disk | FTP | other *** search
- /*
- * m_motion.c
- *
- * Public Domain (p) March 1990 By Rodney Loos
- * Syntax modified by S. Sampson
- */
-
- #include "mouse.h"
-
- /* reads the motion of the mouse */
-
- void m_motion(int *x, int *y)
- {
- __Mpar->m1 = 11;
- mouse(__Mpar);
-
- *x = __Mpar->m3; /* horizontal distance since last call */
- *y = __Mpar->m4; /* vertical distance since last call */
- }