ioctl12.hlp (Topic list)
MOU_SETSCALEFACTORS (1.2)
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
#define INCL_DOSDEVIOCTL
 
USHORT DosDevIOCtl(0L, psfFactors, 0x0053, 0x0007, hDevice)
PSCALEFACT psfFactors;    /* pointer to structure with factors */
HFILE hDevice;            /* device handle                     */
 
The MOU_SETSCALEFACTORS function reassigns the scaling factors of the
current pointing device. Scaling factors are ratio values that determine how
much relative movement is necessary before the mouse device driver reports a
pointing-device event. In graphics mode, the ratio is given in
mickeys-per-pel. In text mode, the ratio is given in mickeys-per-character.
The default ratio values are one mickey-per-row and one mickey-per-column.
 
Parameter   Description
────────────────────────────────────────────────────────────────────────────
 
psfFactors  Points to the SCALEFACT structure that contains the scale
            factors.
 
hDevice     Identifies the pointing device that receives the device-control
            function. The handle must have been created previously by using
            the DosOpen function.
 
Return Value
 
The return value is zero if the function is successful or an error value if
an error occurs.
 
See Also
 
DosOpen, MOU_GETSCALEFACTORS, SCALEFACT
 
                                      ♦