diff --git a/WeChatFerry/spy/spy_types.h b/WeChatFerry/spy/spy_types.h index 2bb396a..22cde4d 100644 --- a/WeChatFerry/spy/spy_types.h +++ b/WeChatFerry/spy/spy_types.h @@ -3,6 +3,7 @@ #include "framework.h" #include +typedef uint64_t QWORD; typedef struct UserInfoCall { DWORD wxid; DWORD nickName; @@ -214,7 +215,10 @@ struct WxString { }; typedef struct RawVector { - DWORD start; - DWORD finish; - DWORD end; +#ifdef _DEBUG + QWORD head; +#endif + QWORD start; + QWORD finish; + QWORD end; } RawVector_t;