preparing update of physfs

This commit is contained in:
fysx
2013-12-20 21:19:16 +01:00
parent f95fbc8a70
commit 3a8901d831
579 changed files with 0 additions and 0 deletions
@@ -0,0 +1,19 @@
// PPC.cpp
#include "StdAfx.h"
#include "PPC.h"
extern "C"
{
#include "../../../../C/Compress/Branch/BranchPPC.h"
}
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);
}