mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 00:07:00 -06:00
18 lines
337 B
C++
Executable File
18 lines
337 B
C++
Executable File
// PPC.cpp
|
|
|
|
#include "StdAfx.h"
|
|
#include "PPC.h"
|
|
|
|
#include "Windows/Defs.h"
|
|
#include "BranchPPC.c"
|
|
|
|
UInt32 CBC_PPC_B_Encoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::PPC_B_Convert(data, size, _bufferPos, 1);
|
|
}
|
|
|
|
UInt32 CBC_PPC_B_Decoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::PPC_B_Convert(data, size, _bufferPos, 0);
|
|
}
|