9 lines
397 B
C
9 lines
397 B
C
/*
|
|
* This file was taken from RakNet 4.082 without any modifications.
|
|
* Please see licenses/RakNet license.txt for the underlying license and related copyright.
|
|
*/
|
|
|
|
/// Apply \a patch to \a old. Will return the new file in \a _new which is allocated for you.
|
|
bool ApplyPatch( char *old, unsigned int oldsize, char **_new, unsigned int *newsize, char *patch, unsigned int patchsize );
|
|
|