home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / PLOT / SURFUTI3.ZIP / TBEMEGA.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1988-02-09  |  645 b   |  20 lines

  1. { Turbo Graphix Toolbox emulation routines. }
  2. { definetextwindow and initgraphic are defined if you are NOT using the
  3.   Turbo Graphix Toolbox, to avoid undefined function call errors on routines
  4.   that aren't used by non-Toolbox versions. Likewise for the constants
  5.   Xscreenmaxglb and Ymaxglb. }
  6. const Xscreenmaxglb = 0;
  7.       Ymaxglb = 0;
  8. procedure definetextwindow (win, xmin, ymin, xmax, ymax, color: integer);
  9. begin
  10. end;
  11.  
  12. procedure initgraphic;
  13. begin
  14. end;
  15. { A dummy routine so the Turbo Graphix Toolbox versions can use DOS windowing. }
  16. procedure T_WINDOW (X1, Y1, X2, Y2: integer);
  17. begin
  18.   window (X1, Y1, X2, Y2);
  19. end;
  20.