home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd2.bin / editors / songs / SoundEngine / vbmp31615.lzh / sample.LZH / APIModule.bas next >
BASIC Source File  |  2000-05-21  |  976b  |  31 lines

  1. Attribute VB_Name = "APIModule"
  2. Option Explicit
  3.   
  4. 'ì└òWé╠ÉFĵô╛API
  5. Declare Function GetPixel Lib "gdi32" _
  6.                  (ByVal hdc As Long, _
  7.                   ByVal x As Long, _
  8.                   ByVal y As Long) As Long
  9.  
  10. 'ì└òWò`ëµAPI
  11. Declare Function SetPixel Lib "gdi32" _
  12.                 (ByVal hdc As Long, _
  13.                  ByVal x As Long, _
  14.                  ByVal y As Long, _
  15.                  ByVal crColor As Long) As Long
  16.  
  17.  
  18. 'âJâîâôâgâ|âWâVâçâôé≡ÄwÆΦé│éΩé╜ô_é╔ìXÉV
  19. Public Declare Function MoveToEx Lib "gdi32" _
  20.                        (ByVal hdc As Long, _
  21.                         ByVal x As Long, _
  22.                         ByVal y As Long, _
  23.                         lpPoint As Long) As Long
  24.  
  25. 'âJâîâôâgâ|âWâVâçâôé⌐éτÄwÆΦé│éΩé╜ÅIô_é▄é┼é╠Éⁿò¬é≡ò`ëµ
  26. Public Declare Function LineTo Lib "gdi32" _
  27.                        (ByVal hdc As Long, _
  28.                         ByVal x As Long, _
  29.                         ByVal y As Long) As Long
  30.  
  31.