view src/win32/7zip/7z/CPP/7zip/Compress/BcjCoder.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 // BcjCoder.h
3 #ifndef __COMPRESS_BCJ_CODER_H
4 #define __COMPRESS_BCJ_CODER_H
6 extern "C"
7 {
8 #include "../../../C/Bra.h"
9 }
11 #include "BranchCoder.h"
13 struct CBranch86
14 {
15 UInt32 _prevMask;
16 void x86Init() { x86_Convert_Init(_prevMask); }
17 };
19 MyClassB(BCJ_x86, 0x01, 3, CBranch86 ,
20 virtual void SubInit() { x86Init(); })
22 #endif