home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Sierp2Stuff"
- Option Explicit
-
- #If Win32 Then
- Type POINTAPI
- x As Long
- y As Long
- End Type
- Declare Function Polygon Lib "gdi32" (ByVal hdc As Long, lpPoint As POINTAPI, ByVal nCount As Long) As Long
- #Else
- Type POINTAPI
- x As Integer
- y As Integer
- End Type
- Declare Function Polygon Lib "GDI" (ByVal hdc As Integer, lpPoints As POINTAPI, ByVal nCount As Integer) As Integer
- #End If
-