◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_MOU typedef struct _PTRLOC { /* moupl */ USHORT row; USHORT col; } PTRLOC; The PTRLOC structure contains the position of the mouse. Field Description ──────────────────────────────────────────────────────────────────────────── row Specifies the x-coordinate of the mouse. col Specifies the y-coordinate of the mouse. Comments The values of the row and col fields depend on the current video mode of the screen (as defined by the VioSetMode function). For text mode, values are given in character cells. For graphics mode, values are given in pels. See Also MouGetPtrPos, MouSetPtrPos, VioSetMode ♦