~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to thirdparty/breakpad/third_party/libdisasm/x86_imm.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 23:40:27 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130307234027-1jc3yomfdliyapta
Tags: 0.6.0+dfsg1-0ubuntu1
Reduce dfsg stripping to fix build (source remains still DFSG compliant)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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