GetClipCursor

3.1

  void GetClipCursor(lprc)    
  RECT FAR* lprc; /* address of structure for rectangle */

The GetClipCursor function retrieves the screen coordinates of the rectangle to which the cursor has been confined by a previous call to the ClipCursor function.

Parameters

lprc

Points to a RECT structure that receives the screen coordinates of the confining rectangle. The structure receives the dimensions of the screen if the cursor is not confined to a rectangle. The RECT structure has the following form:

typedef struct tagRECT {    /* rc */
   int left;
   int top;
   int right;
   int bottom;
} RECT;

For a full description of this structure, see the Microsoft Windows Programmer's Reference, Volume 3.

Return Value

This function does not return a value.

See Also

ClipCursor, GetCursorPos