mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 06:07:07 -06:00
17 lines
303 B
C++
Executable File
17 lines
303 B
C++
Executable File
// ARM.cpp
|
|
|
|
#include "StdAfx.h"
|
|
#include "ARM.h"
|
|
|
|
#include "BranchARM.c"
|
|
|
|
UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::ARM_Convert(data, size, _bufferPos, 1);
|
|
}
|
|
|
|
UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
|
|
{
|
|
return ::ARM_Convert(data, size, _bufferPos, 0);
|
|
}
|