This commit is contained in:
Igor Pavlov
2008-12-31 00:00:00 +00:00
committed by Kornel Lesiński
parent c1f1243a70
commit 3a524e5ba2
259 changed files with 2792 additions and 4855 deletions

22
CPP/7zip/Compress/BcjCoder.h Executable file
View File

@@ -0,0 +1,22 @@
// BcjCoder.h
#ifndef __COMPRESS_BCJ_CODER_H
#define __COMPRESS_BCJ_CODER_H
extern "C"
{
#include "../../../C/Bra.h"
}
#include "BranchCoder.h"
struct CBranch86
{
UInt32 _prevMask;
void x86Init() { x86_Convert_Init(_prevMask); }
};
MyClassB(BCJ_x86, 0x01, 3, CBranch86 ,
virtual void SubInit() { x86Init(); })
#endif