yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame] | 1 | #ifndef ZXIC_IMG_INTERFACE_H
|
| 2 | #define ZXIC_IMG_INTERFACE_H
|
| 3 |
|
| 4 | #include "zxic_types.h"
|
| 5 |
|
| 6 | int ZXIC_GetDeltaSize(void *user_data, zxic_u_int32_t *size);
|
| 7 | int ZXIC_GetDelta(void *user_data, unsigned char *buffer, zxic_u_int32_t start_address, zxic_u_int32_t size);
|
| 8 | int ZXIC_GetBlockSize(void *user_data, int *block_size);
|
| 9 | int ZXIC_ReadImage(void *user_data, unsigned char *buffer, zxic_u_int32_t start_address, zxic_u_int32_t size);
|
| 10 | int ZXIC_WriteBlock(void *user_data, zxic_u_int32_t start_address, unsigned char *buffer);
|
| 11 |
|
| 12 | #endif /*ZXIC_IMG_INTERFACE_H*/
|
| 13 |
|