www.pudn.com > Gimcrack-v0.0051-Source.zip > tgaformat.h


#ifndef _TGAFORMAT_H_ 
#define _TGAFORMAT_H_ 
 
struct TGAHeader 
{ 
	byte	imageIDLenght; 
	byte	colorMapType; 
	byte	imageTypeCode; 
	byte	colorMapOrgin; 
	short	colorMapLenght; 
	short	colorMapEntrySize; 
	short	imageXOrgin; 
	short	imageYOrgin; 
	short	imageWidth; 
	short	imageHeight; 
	byte	bitCount; 
	byte	imageDescriptor; 
}; 
 
#endif