author | nemo |
Sun, 30 Jul 2017 19:06:57 -0400 | |
changeset 12444 | 832b969ea00c |
parent 12213 | bb5522e88ab2 |
permissions | -rw-r--r-- |
// x86.h #ifndef __X86_H #define __X86_H #include "BranchCoder.h" extern "C" { #include "../../../../C/Compress/Branch/BranchX86.h" } struct CBranch86 { UInt32 _prevMask; void x86Init() { x86_Convert_Init(_prevMask); } }; MyClassB(BCJ_x86, 0x01, 3, CBranch86 , virtual void SubInit() { x86Init(); }) #endif