home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
- Type PointAPI
- x As Integer
- y As Integer
- End Type
-
- Type Rect
- left As Integer
- top As Integer
- right As Integer
- bottom As Integer
- End Type
-
- Declare Sub GetCursorPos Lib "User" (lpPoint As PointAPI)
- Declare Sub GetClipCursor Lib "User" (lprc As Rect)
- Declare Sub ClipCursor Lib "User" (lpRect As Any)
- Declare Sub SetCursorPos Lib "User" (ByVal x As Integer, ByVal y As Integer)
- Declare Sub GetWindowRect Lib "User" (ByVal hWnd As Integer, lpRect As Rect)
- Declare Function ShowCursor Lib "User" (ByVal bShow As Integer) As Integer
-
-