mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
e5c67cee83
- CONFLICT (content): Merge conflict in src/p_acs.cpp - Updated position variables
19 lines
376 B
C
19 lines
376 B
C
/* Delta.h -- Delta converter
|
|
2013-01-18 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __DELTA_H
|
|
#define __DELTA_H
|
|
|
|
#include "7zTypes.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
#define DELTA_STATE_SIZE 256
|
|
|
|
void Delta_Init(Byte *state);
|
|
void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
|
|
void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|