comparison: toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/x86_imm.h
toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/x86_imm.h
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
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 */ |
|
13 unsigned int x86_imm_sized( unsigned char *buf, size_t buf_len, void *dest, |
|
14 unsigned int size ); |
|
15 |
|
16 unsigned int x86_imm_signsized( unsigned char *buf, size_t buf_len, void *dest, |
|
17 unsigned int size ); |
|
18 #endif |