home *** CD-ROM | disk | FTP | other *** search
- #include "conio.h"
- #include "malloc.h"
- #include "stdio.h"
- #include "stdlib.h"
- #include "graph.h"
-
- void pcx_show(char *, int, int, int); /*[ pcx_file_name,
- Border's Palette Color number,
- if <0, meaning no border
- for 16 colors, from 0 to 15;
- for VGA256 , from 0 to 255.
- Begin X: (Left),
- Begin Y: (top) ]*/
-
-
-
- main(argc, argv)
- int argc;
- char *argv[];
- {
- struct videoconfig vc;
- FILE *fp_in;
-
- if (argc !=2) { printf("\nYou must enter command line as following format:\n");
- printf("\nQC-DISP <filename of MicroSoft image file>\n");
- getch();
- exit(1);
- }
- if ( (fp_in=fopen(argv[1],"rb"))==NULL )
- { printf("\nCan't open Microsoft Image file [%s] !!!",argv[1]);
- getch();
- exit(5);
- }
- fclose(fp_in);
- _setvideomode(_MAXRESMODE);
-
- pcx_show(argv[1],10, 1,1);
- getch();
-
- _setvideomode(_DEFAULTMODE);
- _clearscreen(_GCLEARSCREEN);
- return(0);
- }
-
-
-
-