From 9959b68916b2f72e35fb2b3f91c4bd9ad64934fd Mon Sep 17 00:00:00 2001 From: Changhua Date: Sun, 9 Jun 2024 19:11:37 +0800 Subject: [PATCH] Update address type --- WeChatFerry/spy/spy_types.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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;