Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 #ifndef x86_IMM_H
2 #define x86_IMM_H
4 #include "./qword.h"
5 #include <sys/types.h>
7 #ifdef WIN32
8 #include <windows.h>
9 #endif
11 /* these are in the global x86 namespace but are not a part of the
12 * official API */
13 unsigned int x86_imm_sized( unsigned char *buf, size_t buf_len, void *dest,
14 unsigned int size );
16 unsigned int x86_imm_signsized( unsigned char *buf, size_t buf_len, void *dest,
17 unsigned int size );
18 #endif