home *** CD-ROM | disk | FTP | other *** search
- ' Type declarations
-
- Type RECT
- left As Integer
- top As Integer
- right As Integer
- bottom As Integer
- End Type
-
- ' Windows API declarations
-
- Declare Sub InvertRect Lib "User" (ByVal hDC As Integer, lpRect As RECT)
- Declare Function GetDC Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function ReleaseDC Lib "User" (ByVal hWnd As Integer, ByVal hDC As Integer) As Integer
-
-
-