Update address type

This commit is contained in:
Changhua 2024-06-09 19:11:37 +08:00
parent e8c7b2147e
commit 9959b68916

View File

@ -3,6 +3,7 @@
#include "framework.h" #include "framework.h"
#include <string> #include <string>
typedef uint64_t QWORD;
typedef struct UserInfoCall { typedef struct UserInfoCall {
DWORD wxid; DWORD wxid;
DWORD nickName; DWORD nickName;
@ -214,7 +215,10 @@ struct WxString {
}; };
typedef struct RawVector { typedef struct RawVector {
DWORD start; #ifdef _DEBUG
DWORD finish; QWORD head;
DWORD end; #endif
QWORD start;
QWORD finish;
QWORD end;
} RawVector_t; } RawVector_t;