7 lines
270 B
C
7 lines
270 B
C
#pragma once
|
|
|
|
/** Initializes xdelta3 with the given previous file */
|
|
void xdelta3Init(char* prevFile);
|
|
|
|
/** Supplies the given input buffer to xdelta3 and undiffs the data. */
|
|
void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart);
|