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 / svobjects / WurzelSVObjects.I < prev   
Text File  |  1994-12-28  |  3KB  |  67 lines

  1. {
  2.         SVObjects - 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/SVObjects/SVObjects.i" }
  18.  
  19. VAR
  20.     SVObjectBase   :   Address;
  21.  
  22. { Functions available since Version 1 :                                 }
  23.  
  24. FUNCTION SVO_AllocHandle (future : Address) : Address; EXTERNAL;
  25.  
  26. PROCEDURE SVO_FreeHandle (handle : Address); EXTERNAL;
  27.  
  28. FUNCTION SVO_Show (handle : Address) : Integer; EXTERNAL;
  29.  
  30. FUNCTION SVO_Write (handle : Address) : Integer; EXTERNAL;
  31.  
  32. PROCEDURE SVO_CloseDisplay (handle : Address); EXTERNAL;
  33.  
  34. PROCEDURE SVO_FreeResources (handle : Address); EXTERNAL;
  35.  
  36. FUNCTION SVO_SetAccessMode (handle : Address ; mode : Integer) : Integer; EXTERNAL;
  37.  
  38. FUNCTION SVO_SetScreenType (handle : Address ; stype : Integer; future : Address) : Integer; EXTERNAL;
  39.  
  40. FUNCTION SVO_SetWindowFlags (handle : Address ; flags : Integer; future : Address) : Integer; EXTERNAL;
  41.  
  42. FUNCTION SVO_SetWindowIDCMP (handle : Address; idcmp : Integer; future : Address) : Integer; EXTERNAL;
  43.  
  44. FUNCTION SVO_GetScreenAddress (handle , future : Address) : ScreenPtr; EXTERNAL;
  45.  
  46. FUNCTION SVO_GetWindowAddress (handle, future : Address) : WindowPtr; EXTERNAL;
  47.  
  48. FUNCTION SVO_SetScreenAddress (handle : Address ; sc : ScreenPtr; future : Address) : Integer; EXTERNAL;
  49.  
  50. FUNCTION SVO_SetWindowAddress (handle : Address ; win : WindowPtr ; future : Address) : Integer; EXTERNAL;
  51.  
  52. FUNCTION SVO_SetWriteName (handle : Address; name : String; future : Address) : Integer; EXTERNAL;
  53.  
  54. FUNCTION SVO_SetReadName (handle : Address; name : String; future : Address) : Integer; EXTERNAL;
  55.  
  56. FUNCTION SVO_FileInfoRequest (handle : Address ; win : WindowPtr; future : Address) : Integer; EXTERNAL;
  57.  
  58. FUNCTION SVO_CheckFileType (fileh : BPTR; filename : String; svo_check : SVOCheckFilePtr) : Integer; EXTERNAL;
  59.  
  60. { Functions added with Version 2 :                                      }
  61.  
  62. FUNCTION SVO_ReadToGfxBuffer (handle : Address) : Integer; EXTERNAL;
  63.  
  64. FUNCTION SVO_GetGfxBuffer (handle : Address; buffer : ^SV_GfxBufferPtr; future : Integer) : Integer; EXTERNAL;
  65.  
  66. FUNCTION SVO_SetGfxBuffer (handle : Address; buffer : SV_GfxBufferPtr; future : Integer) : Integer; EXTERNAL;
  67.