home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gfx / superview-lib-9.12.lha / SuperView-Lib / Programmers / PCQ-Pascal / include / SV / svdrivers / WurzelSVDrivers.I < prev   
Text File  |  1994-12-28  |  1KB  |  43 lines

  1. {
  2.         SVDrivers - Include  by Andreas "Wurzelsepp" <:-) Neumann
  3.  
  4.         für SuperView-Library von Andreas R. Kleinert
  5.  
  6.         basierend auf den C-Includes von Andreas R. Kleinert
  7.  
  8.         letzte Bearbeitung  :   23.11.1994
  9.  
  10.         Linkeraufruf    :   blink MyProgram.o lib PCQ.Lib,Wurzel.Lib to
  11.                             MyProgram
  12.  
  13.         dieses Includefile darf frei kopiert werden, solange alle
  14.         Hinweise erhalten bleiben
  15.                                                                         }
  16.  
  17. {$I "Include:SV/SVDrivers/SVDrivers.i" }
  18.  
  19. VAR
  20.     SVDriverBase   :   Address;
  21.  
  22. FUNCTION SVD_AllocHandle (future : Address) : Address; EXTERNAL;
  23.  
  24. PROCEDURE SVD_FreeHandle (handle : Address); EXTERNAL;
  25.  
  26. PROCEDURE SVD_CloseDisplay (handle : Address); EXTERNAL;
  27.  
  28. PROCEDURE SVD_FreeResources (handle : Address); EXTERNAL;
  29.  
  30. FUNCTION SVD_SetGfxBuffer (handle : Address; buffer : SV_GfxBufferPtr; future : INTEGER) : INTEGER; EXTERNAL;
  31.  
  32. FUNCTION SVD_DisplayGfxBuffer (handle, future : Address) : Integer; EXTERNAL;
  33.  
  34. FUNCTION SVD_SetScreenType (handle : Address; stype : Integer; future : Address) : Integer; EXTERNAL;
  35.  
  36. FUNCTION SVD_SetWindowFlags (handle : Address; flags : INTEGER; future : Address) : Integer; EXTERNAL;
  37.  
  38. FUNCTION SVD_SetWindowIDCMP (handle : Address; idcmp : Integer; future : Address) : Integer; EXTERNAL;
  39.  
  40. FUNCTION SVD_GetScreenAddress (handle , future : Address) : ScreenPtr; EXTERNAL;
  41.  
  42. FUNCTION SVD_GetWindowAddress (handle, future : Address) : WindowPtr; EXTERNAL;
  43.