Files
mir_server/sdk/breakpad/third_party/libdisasm/qword.h

15 lines
218 B
C
Raw Normal View History

2025-01-09 17:45:40 +08:00
#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