/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
- #ifndef LIBDISASM_QWORD_H
- #define LIBDISASM_QWORD_H
- #include <stdint.h>
- /* platform independent data types */
- #ifdef _MSC_VER
- typedef __int64 qword_t;
- #else
- typedef int64_t qword_t;
- #endif
- #endif