2018-09-14 04:11:44 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/** Initializes xdelta3 with the given previous file */
|
|
|
|
void xdelta3Init(char* prevFile);
|
|
|
|
|
|
|
|
/** Supplies the given input buffer to xdelta3 and undiffs the data. */
|
2018-09-16 02:33:30 +02:00
|
|
|
void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile);
|