mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 16:07:06 -06:00
4.58 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
bd1fa36322
commit
3901bf0ab8
39
CPP/7zip/Compress/Branch/BranchMisc.cpp
Executable file
39
CPP/7zip/Compress/Branch/BranchMisc.cpp
Executable file
@@ -0,0 +1,39 @@
|
||||
// BranchMisc.cpp
|
||||
|
||||
#include "StdAfx.h"
|
||||
#include "BranchMisc.h"
|
||||
|
||||
extern "C"
|
||||
{
|
||||
#include "../../../../C/Bra.h"
|
||||
}
|
||||
|
||||
UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::ARM_Convert(data, size, _bufferPos, 1); }
|
||||
|
||||
UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::ARM_Convert(data, size, _bufferPos, 0); }
|
||||
|
||||
UInt32 CBC_ARMT_Encoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::ARMT_Convert(data, size, _bufferPos, 1); }
|
||||
|
||||
UInt32 CBC_ARMT_Decoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::ARMT_Convert(data, size, _bufferPos, 0); }
|
||||
|
||||
UInt32 CBC_PPC_Encoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::PPC_Convert(data, size, _bufferPos, 1); }
|
||||
|
||||
UInt32 CBC_PPC_Decoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::PPC_Convert(data, size, _bufferPos, 0); }
|
||||
|
||||
UInt32 CBC_SPARC_Encoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::SPARC_Convert(data, size, _bufferPos, 1); }
|
||||
|
||||
UInt32 CBC_SPARC_Decoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::SPARC_Convert(data, size, _bufferPos, 0); }
|
||||
|
||||
UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::IA64_Convert(data, size, _bufferPos, 1); }
|
||||
|
||||
UInt32 CBC_IA64_Decoder::SubFilter(Byte *data, UInt32 size)
|
||||
{ return (UInt32)::IA64_Convert(data, size, _bufferPos, 0); }
|
||||
Reference in New Issue
Block a user