home *** CD-ROM | disk | FTP | other *** search
-
- (*
- ** ColoRIX/EGA Paint file-format unit
- **
- ** Made by Bas van Gaalen
- *)
-
- unit u_ffrix;
-
- interface
-
- uses dos,graph;
-
- const
- rix_ok=0;
- rix_nofile=1;
- rix_invalid=2;
- rix_nocreate=3;
- rix_errfile=4;
-
- type
- rix_inforec=record
- xres,yres:word;
- pixs:byte;
- end;
-
- var
- rix_status:byte;
-
- function rix_errstr:string;
- function rix_display(fname,bgipath:pathstr; vidmode:shortint):byte;
- function rix_info(fname:pathstr; var info:rix_inforec):byte;
-
- implementation
-
-