Previous Next Up Title Contents Index Top Library

6.4 COMPATIBILITY OF ARCHIVE FILES

Archive file generated by GPHIGS V2.x are not compatible with GPHIGS V6.0. They must be translated by calling the function pxconvarf. The name of the file to convert is given to this function. pxconvarf creates a new file by appending the suffix .new for the original file name. This new file can be used with GPHIGS 6.0.

The following program can be used to convert archive files:

main(argc,argv)

int argc;

char *argv[];

{

pxconvarf(argv[1]);

}


Previous Next Up Title Contents Index Top Library