Path: utzoo!news-server.csri.toronto.edu!cs.utexas.edu!usc!apple!well!knoll From: knoll@well.sf.ca.us (John Knoll) Newsgroups: comp.graphics Subject: Re: Z-Soft's PCX image file format Message-ID: <23514@well.sf.ca.us> Date: 10 Mar 91 06:53:50 GMT References: <9274@exodus.Eng.Sun.COM> Organization: Whole Earth 'Lectronic Link, Sausalito, CA Lines: 20 OK, how about this: /* PCX header */ typedef struct PCXheader{ char manufacturer; char version; char encoding; char bits_per_pixel; short xmin,ymin; short xmax,ymax; short hres; short vres; char palette[48]; char reserved; char color_planes; short rowbytes; short palette_type; char filler[58]; } PCXheader;