17 lines
303 B
C
17 lines
303 B
C
#ifndef __DEC_H__
|
|
#define __DEC_H__
|
|
|
|
#include "typedef.h"
|
|
|
|
|
|
void doe(u16 k, void *pBuf, u32 lenIn, u32 addr);
|
|
|
|
u16 doe_continue(u16 k, void *pBuf, u32 lenIn, u8 init_flag);
|
|
|
|
void decode(u16 key, u8 *buf, u32 len, u32 offset);
|
|
|
|
u8 dec_isd_cfg_ini(const char *cfg, void *value, const u8 *ptr);
|
|
|
|
|
|
#endif
|