Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: src/third_party/libdisasm/x86_imm.h

Issue 1821293002: Replace libdisasm with capstone Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698