www.pudn.com > C++_Flash.rar > SWFColorTransform.h


// SWFColorTransform.h: interface for the CSWFColorTransform class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(SWFCOLORTRANSFORM_H) 
#define SWFCOLORTRANSFORM_H 
 
#include "Definitions.h" 
 
class CSWFColorTransform   
{ 
public: 
	CSWFColorTransform(SWF_COLOR_TRANSFORM* colorTransform); 
	virtual ~CSWFColorTransform(); 
 
public: 
	// Public methods 
	UCHAR* BuildSWFStream(); 
	int GetSWFStreamLength(); 
 
private: 
	// Private members 
	SWF_CXFORM_WITH_ALPHA_TAG m_CXForm; 
	UCHAR* m_SWFStream; 
	int m_SWFStreamLength; 
 
}; 
 
#endif // !defined(SWFCOLORTRANSFORM_H)