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 <string>
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;