Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 386 Bytes

ARMThumb.cpp

File metadata and controls

20 lines (15 loc) · 386 Bytes
 
Jan 23, 2008
Jan 23, 2008
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// ARMThumb.cpp
#include "StdAfx.h"
#include "ARMThumb.h"
extern "C"
{
#include "../../../../C/Compress/Branch/BranchARMThumb.h"
}
UInt32 CBC_ARMThumb_Encoder::SubFilter(Byte *data, UInt32 size)
{
return ::ARMThumb_Convert(data, size, _bufferPos, 1);
}
UInt32 CBC_ARMThumb_Decoder::SubFilter(Byte *data, UInt32 size)
{
return ::ARMThumb_Convert(data, size, _bufferPos, 0);
}