home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / PascalPCQ / Include / Graphics / Graphics.i < prev    next >
Text File  |  1990-08-28  |  673b  |  26 lines

  1. {
  2.     Graphics.i of PCQ Pascal
  3.  
  4.     This is not a standard Amiga include file.  Its only
  5.     purpose, in fact, is to declare the GfxBase variable,
  6.     which is used throughout the runtime library whenever
  7.     you call a graphics.library routine.  You can just as
  8.     easily declare a variable of exactly the same name in
  9.     your source code, by the way.
  10.  
  11.     The original Graphics.i of PCQ Pascal corresponds to
  12.     roughly these files:
  13.  
  14.         Graphics/RastPort.i
  15.         Graphics/Regions.i
  16.         Graphics/Pens.i
  17.  
  18.     The older Graphics.i file declared all the graphics.library
  19.     routines supported by PCQ.lib, so you would also have to
  20.     include various other files to get all of them.
  21. }
  22.  
  23. var
  24.     GfxBase    : Address;
  25.  
  26.