You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
944 B
30 lines
944 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
// Serialization/unserialization buffer
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef DIFF_H
|
||
|
#define DIFF_H
|
||
|
#pragma once
|
||
|
|
||
|
int FindDiffs(uint8 const *NewBlock, uint8 const *OldBlock,
|
||
|
int NewSize, int OldSize, int &DiffListSize,uint8 *Output,uint32 OutSize);
|
||
|
|
||
|
int FindDiffsForLargeFiles(uint8 const *NewBlock, uint8 const *OldBlock,
|
||
|
int NewSize, int OldSize, int &DiffListSize,uint8 *Output,
|
||
|
uint32 OutSize,
|
||
|
int hashsize=65536);
|
||
|
|
||
|
void ApplyDiffs(uint8 const *OldBlock, uint8 const *DiffList,
|
||
|
int OldSize, int DiffListSize, int &ResultListSize,uint8 *Output,uint32 OutSize);
|
||
|
|
||
|
int FindDiffsLowMemory(uint8 const *NewBlock, uint8 const *OldBlock,
|
||
|
int NewSize, int OldSize, int &DiffListSize,uint8 *Output,uint32 OutSize);
|
||
|
|
||
|
#endif
|
||
|
|