ssn-installer/src/xdelta3.h

8 lines
288 B
C
Raw Normal View History

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. */
void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile);