www.pudn.com > ControlRemote.zip > RLE.h


#if !defined(RLE_H) 
#define RLE_H 
 
#include  
#include  
#include  
#ifdef __cplusplus 
extern "C"  
{ 
#endif 
//run length ±àÂë½âÂ뺯Êý¼¯ 
DWORD	RunLength(BYTE *pInput,DWORD dwCount); 
DWORD	RunLengthEncode(BYTE *pInput,DWORD dwCount,BYTE *pOutput); 
DWORD	RunLengthDecode(BYTE *pInput,BYTE *pOutput); 
 
#ifdef __cplusplus 
} 
#endif 
#endif