x86.h 323 B

123456789101112131415161718192021
  1. // x86.h
  2. #ifndef __X86_H
  3. #define __X86_H
  4. #include "BranchCoder.h"
  5. extern "C"
  6. {
  7. #include "../../../../C/Compress/Branch/BranchX86.h"
  8. }
  9. struct CBranch86
  10. {
  11. UInt32 _prevMask;
  12. void x86Init() { x86_Convert_Init(_prevMask); }
  13. };
  14. MyClassB(BCJ_x86, 0x01, 3, CBranch86 ,
  15. virtual void SubInit() { x86Init(); })
  16. #endif