home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / EXTRAS / TEKTEL / SRC.ZIP / GDI.INC < prev    next >
Encoding:
Text File  |  1994-03-01  |  1.1 KB  |  22 lines

  1. ' GDI.INC - extracted from...
  2. ' ------------------------------------------------------------------------
  3. '
  4. '     WINAPI.TXT -- Windows 3.0 API Declarations for Visual Basic
  5. '
  6. '              Copyright (C) 1991 Microsoft Corporation
  7. '
  8. '  You have a royalty-free right to use, modify, reproduce and distribute
  9. '  this file (and/or any modified version) in any way you find useful,
  10. '  provided that you agree that Microsoft has no warranty, obligation or
  11. '  liability for its contents.  Refer to the Microsoft Windows Programmer's
  12. '  Reference for further information.
  13. '
  14. ' ------------------------------------------------------------------------
  15.  
  16. Declare Function BitBlt Lib "GDI" (ByVal hDestDC As Integer, ByVal X As Integer, ByVal Y As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal hSrcDC As Integer, ByVal XSrc As Integer, ByVal YSrc As Integer, ByVal dwRop As Long) As Integer
  17. Global Const SRCCOPY = &HCC0020 ' (DWORD) dest = source
  18. Global Const SRCERASE = &H440328
  19. Declare Function SetMapMode Lib "GDI" (ByVal hDC As Integer, ByVal nMapMode As Integer) As Integer
  20. Global Const MM_TEXT = 1
  21.  
  22.