home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / PASCAL / FASTVGA / TABPCX.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-07-13  |  537 b   |  25 lines

  1. unit TABPCX;
  2.  
  3. interface
  4.  
  5. procedure TABDemoPCX;
  6.  
  7. const TABPCXSize = 9160; { This is the size of the TABDEMO.PCX file }
  8.  
  9. implementation
  10.  
  11. {$L TABPCX.OBJ}
  12.  
  13. { To create the TABPCX.OBJ object file, you'll need the BINOBJ
  14.   utility provided with Turbo Pascal or Borland Pascal. Have
  15.   the PCX file "TABDEMO.PCX" in the current directory, and type
  16.   the following command line:
  17.  
  18.   BINOBJ TABDEMO.PCX TABPCX.OBJ TABDemoPCX
  19.  
  20.   then press Enter. The file TABPCX.OBJ will be created. }
  21.  
  22. procedure TABDemoPCX; external;
  23.  
  24. end.
  25.