aboutsummaryrefslogtreecommitdiff
path: root/src/third_party/libdisasm/qword.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/libdisasm/qword.h')
-rw-r--r--src/third_party/libdisasm/qword.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/third_party/libdisasm/qword.h b/src/third_party/libdisasm/qword.h
new file mode 100644
index 00000000..5f0e803c
--- /dev/null
+++ b/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