home *** CD-ROM | disk | FTP | other *** search
- /*
- * m_speed.c
- *
- * Public Domain (p) March 1990 By Rodney Loos
- * Syntax modified by S. Sampson
- */
-
- #include "mouse.h"
-
- /*
- * Set the threshold speed for doubling the cursor's
- * movements
- */
-
- void m_speed(int x)
- {
- __Mpar->m1 = 19;
- __Mpar->m4 = x; /* speed threshold */
- mouse(__Mpar);
- }