home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GFXFX2.ZIP / UNITINT.ZIP / U_FFRIX.INT < prev    next >
Text File  |  1995-02-14  |  507b  |  36 lines

  1.  
  2. (*
  3. ** ColoRIX/EGA Paint file-format unit
  4. **
  5. ** Made by Bas van Gaalen
  6. *)
  7.  
  8. unit u_ffrix;
  9.  
  10. interface
  11.  
  12. uses dos,graph;
  13.  
  14. const
  15.   rix_ok=0;
  16.   rix_nofile=1;
  17.   rix_invalid=2;
  18.   rix_nocreate=3;
  19.   rix_errfile=4;
  20.  
  21. type
  22.   rix_inforec=record
  23.     xres,yres:word;
  24.     pixs:byte;
  25.   end;
  26.  
  27. var
  28.   rix_status:byte;
  29.  
  30. function rix_errstr:string;
  31. function rix_display(fname,bgipath:pathstr; vidmode:shortint):byte;
  32. function rix_info(fname:pathstr; var info:rix_inforec):byte;
  33.  
  34. implementation
  35.  
  36.