mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 14:07:13 -06:00
19 lines
378 B
C++
Executable File
19 lines
378 B
C++
Executable File
// x86.cpp
|
|
|
|
#include "StdAfx.h"
|
|
#include "x86.h"
|
|
|
|
#include "Windows/Defs.h"
|
|
|
|
#include "BranchX86.c"
|
|
|
|
UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 1);
|
|
}
|
|
|
|
UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 0);
|
|
}
|