Annotation of elwix/tools/oldlzma/SRC/7zip/Compress/Branch/BranchX86.h, revision 1.1.1.1
1.1 misho 1: /* BranchX86.h */
2:
3: #ifndef __BRANCHX86_H
4: #define __BRANCHX86_H
5:
6: #ifndef UInt32
7: #define UInt32 unsigned int
8: #endif
9:
10: #ifndef Byte
11: #define Byte unsigned char
12: #endif
13:
14: #define x86_Convert_Init(prevMask, prevPos) { prevMask = 0; prevPos = (UInt32)(-5); }
15:
16: UInt32 x86_Convert(Byte *buffer, UInt32 endPos, UInt32 nowPos,
17: UInt32 *prevMask, UInt32 *prevPos, int encoding);
18:
19: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>