1#ifndef x86_IMM_H
2#define x86_IMM_H
3
4#include "./qword.h"
5#include <sys/types.h>
6
7#ifdef WIN32
8#include <windows.h>
9#endif
10
11/* these are in the global x86 namespace but are not a part of the
12 * official API */
13unsigned int x86_imm_sized( unsigned char *buf, size_t buf_len, void *dest,
14 unsigned int size );
15
16unsigned int x86_imm_signsized( unsigned char *buf, size_t buf_len, void *dest,
17 unsigned int size );
18#endif
19