michael@0: #ifndef LIBDISASM_QWORD_H michael@0: #define LIBDISASM_QWORD_H michael@0: michael@0: #include michael@0: michael@0: /* platform independent data types */ michael@0: michael@0: #ifdef _MSC_VER michael@0: typedef __int64 qword_t; michael@0: #else michael@0: typedef int64_t qword_t; michael@0: #endif michael@0: michael@0: #endif