blob: be2528595defc6143363d46d99fab35e60d8f83a [file] [log] [blame]
#ifndef ZXIC_IMG_INTERFACE_H
#define ZXIC_IMG_INTERFACE_H
#include "zxic_types.h"
int ZXIC_GetDeltaSize(void *user_data, zxic_u_int32_t *size);
int ZXIC_GetDelta(void *user_data, unsigned char *buffer, zxic_u_int32_t start_address, zxic_u_int32_t size);
int ZXIC_GetBlockSize(void *user_data, int *block_size);
int ZXIC_ReadImage(void *user_data, unsigned char *buffer, zxic_u_int32_t start_address, zxic_u_int32_t size);
int ZXIC_WriteBlock(void *user_data, zxic_u_int32_t start_address, unsigned char *buffer);
#endif /*ZXIC_IMG_INTERFACE_H*/