diff options
Diffstat (limited to 'externals/breakpad/src/third_party/libdisasm/qword.h')
-rw-r--r-- | externals/breakpad/src/third_party/libdisasm/qword.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/externals/breakpad/src/third_party/libdisasm/qword.h b/externals/breakpad/src/third_party/libdisasm/qword.h new file mode 100644 index 0000000000..5f0e803c93 --- /dev/null +++ b/externals/breakpad/src/third_party/libdisasm/qword.h @@ -0,0 +1,14 @@ +#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 |