/thirdparty/breakpad/third_party/libdisasm/qword.h

http://github.com/tomahawk-player/tomahawk · C++ Header · 14 lines · 9 code · 4 blank · 1 comment · 0 complexity · f56efac8b89b11e58ad31c4f26fe9d08 MD5 · raw file

  1. #ifndef LIBDISASM_QWORD_H
  2. #define LIBDISASM_QWORD_H
  3. #include <stdint.h>
  4. /* platform independent data types */
  5. #ifdef _MSC_VER
  6. typedef __int64 qword_t;
  7. #else
  8. typedef int64_t qword_t;
  9. #endif
  10. #endif