www.pudn.com > RSImageManger.rar > GIFWRITE.CPP


//////////////////////////////////////////////////////////// 
//	GIFFile - A C++ class to allow reading and writing of GIF Images 
// 
//	Note : GIF support has been removed as of 9/24/97. I am  
//	pursuing a license from Unisys to enable me to include GIF support  
//  in this package. Until then, no GIF. Sorry. -cdl 
// 
//////////////////////////////////////////////////////////// 
 
 
#include "stdafx.h" 
#include "giffile.h" 
 
/******************************************************************************* 
*	here's the entry point.  
*	file ptr, screen width, height, background color, bits per pixel and 
*	arrays of color values (0-255) 
*******************************************************************************/ 
BOOL GIFFile::GIFWriteFileFrom256Color(unsigned char  * buf, 
							CString name, 
							int GWidth,  
							int GHeight, 
							int BackGround, 
							int Red[], int Green[], int Blue[]) 
{                        
	return FALSE; 
}