x86_imm.h 427 B

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