From b99a3aa377ccebb9f40fadc8d2e4717846d2554c Mon Sep 17 00:00:00 2001 From: Changhua Date: Wed, 5 Feb 2025 08:44:16 +0800 Subject: [PATCH] Refactoring --- WeChatFerry/spy/chatroom_mgmt.cpp | 2 +- WeChatFerry/spy/contact_mgmt.cpp | 2 +- WeChatFerry/spy/exec_sql.cpp | 2 +- WeChatFerry/spy/{fill_response.h => rpc_helper.h} | 0 WeChatFerry/spy/send_msg.cpp | 2 +- WeChatFerry/spy/user_info.cpp | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename WeChatFerry/spy/{fill_response.h => rpc_helper.h} (100%) diff --git a/WeChatFerry/spy/chatroom_mgmt.cpp b/WeChatFerry/spy/chatroom_mgmt.cpp index 5cef8df..d7d156f 100644 --- a/WeChatFerry/spy/chatroom_mgmt.cpp +++ b/WeChatFerry/spy/chatroom_mgmt.cpp @@ -1,9 +1,9 @@ #pragma execution_character_set("utf-8") #include "chatroom_mgmt.h" -#include "fill_response.h" #include "log.hpp" #include "pb_util.h" +#include "rpc_helper.h" #include "util.h" using namespace std; diff --git a/WeChatFerry/spy/contact_mgmt.cpp b/WeChatFerry/spy/contact_mgmt.cpp index 6c6c631..f100c3b 100644 --- a/WeChatFerry/spy/contact_mgmt.cpp +++ b/WeChatFerry/spy/contact_mgmt.cpp @@ -2,9 +2,9 @@ #include "contact_mgmt.h" -#include "fill_response.h" #include "log.hpp" #include "pb_util.h" +#include "rpc_helper.h" #include "util.h" using namespace std; diff --git a/WeChatFerry/spy/exec_sql.cpp b/WeChatFerry/spy/exec_sql.cpp index 1993ecd..5581357 100644 --- a/WeChatFerry/spy/exec_sql.cpp +++ b/WeChatFerry/spy/exec_sql.cpp @@ -3,9 +3,9 @@ #include #include -#include "fill_response.h" #include "log.hpp" #include "pb_util.h" +#include "rpc_helper.h" #include "sqlite3.h" #include "util.h" diff --git a/WeChatFerry/spy/fill_response.h b/WeChatFerry/spy/rpc_helper.h similarity index 100% rename from WeChatFerry/spy/fill_response.h rename to WeChatFerry/spy/rpc_helper.h diff --git a/WeChatFerry/spy/send_msg.cpp b/WeChatFerry/spy/send_msg.cpp index 1134cbd..ff1609d 100644 --- a/WeChatFerry/spy/send_msg.cpp +++ b/WeChatFerry/spy/send_msg.cpp @@ -4,8 +4,8 @@ #include #include "exec_sql.h" -#include "fill_response.h" #include "log.hpp" +#include "rpc_helper.h" #include "spy_types.h" #include "user_info.h" #include "util.h" diff --git a/WeChatFerry/spy/user_info.cpp b/WeChatFerry/spy/user_info.cpp index 48ad23e..c58e471 100644 --- a/WeChatFerry/spy/user_info.cpp +++ b/WeChatFerry/spy/user_info.cpp @@ -3,8 +3,8 @@ #include #include -#include "fill_response.h" #include "log.hpp" +#include "rpc_helper.h" #include "util.h" extern UINT64 g_WeChatWinDllAddr;