home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- Option Explicit
-
- #If Win32 Then
- ' Note the extra argument for 32-bit systems.
- Declare Function MoveToEx Lib "gdi32" ( _
- ByVal hdc As Long, ByVal x As Long, _
- ByVal y As Long, lpPoint As Any) _
- As Long
-
- Declare Function LineTo Lib "gdi32" ( _
- ByVal hdc As Long, ByVal x As Long, _
- ByVal y As Long) As Long
- #Else
- Declare Function MoveTo Lib "GDI" ( _
- ByVal hdc As Integer, ByVal x As Integer, _
- ByVal y As Integer) As Long
-
- Declare Function LineTo Lib "GDI" ( _
- ByVal hdc As Integer, ByVal x As Integer, _
- ByVal y As Integer) As Integer
- #End If
-
-