www.pudn.com > libpcx.rar > PCX.H


#ifndef _pcx__ 
#define _pcx__ 
 
// Standard PCX header 
typedef struct { 
     char   ID; 
     char   Version; 
     char   Encoding; 
     char   BitPerPixel; 
     short  X1; 
     short  Y1; 
     short  X2; 
     short  Y2; 
     short  HRes; 
     short  VRes; 
     char   ClrMap[16*3]; 
     char   Reserved1; 
     char   NumPlanes; 
     short  BPL; 
     short  Pal_t; 
     char   Filler[58]; 
} PCXHead; 
 
extern int PcxToBmp(const char* srcName,const char* DesName); 
#endif