qword.h 218 B

1234567891011121314
  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