From e0f8edb647f5b906962c5b92eeeef33f03fe9173 Mon Sep 17 00:00:00 2001 From: Changhua Date: Tue, 13 Jun 2023 07:40:38 +0800 Subject: [PATCH] Rename files --- spy/Spy.vcxproj | 4 ++-- spy/Spy.vcxproj.filters | 4 ++-- spy/{add_chatroom_member.cpp => chatroom_mgmt.cpp} | 2 +- spy/{add_chatroom_member.h => chatroom_mgmt.h} | 0 spy/rpc_server.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename spy/{add_chatroom_member.cpp => chatroom_mgmt.cpp} (98%) rename spy/{add_chatroom_member.h => chatroom_mgmt.h} (100%) diff --git a/spy/Spy.vcxproj b/spy/Spy.vcxproj index f2caedd..471d676 100644 --- a/spy/Spy.vcxproj +++ b/spy/Spy.vcxproj @@ -227,7 +227,7 @@ $(SolutionDir)rpc\tool\protoc --nanopb_out=. wcf.proto - + @@ -252,7 +252,7 @@ $(SolutionDir)rpc\tool\protoc --nanopb_out=. wcf.proto - + diff --git a/spy/Spy.vcxproj.filters b/spy/Spy.vcxproj.filters index d8614de..1f814de 100644 --- a/spy/Spy.vcxproj.filters +++ b/spy/Spy.vcxproj.filters @@ -75,7 +75,7 @@ nnrpc - + 头文件 @@ -143,7 +143,7 @@ nnrpc - + 源文件 diff --git a/spy/add_chatroom_member.cpp b/spy/chatroom_mgmt.cpp similarity index 98% rename from spy/add_chatroom_member.cpp rename to spy/chatroom_mgmt.cpp index 2341cc3..0600431 100644 --- a/spy/add_chatroom_member.cpp +++ b/spy/chatroom_mgmt.cpp @@ -1,7 +1,7 @@ #include "framework.h" #include -#include "add_chatroom_member.h" +#include "chatroom_mgmt.h" #include "load_calls.h" #include "log.h" #include "util.h" diff --git a/spy/add_chatroom_member.h b/spy/chatroom_mgmt.h similarity index 100% rename from spy/add_chatroom_member.h rename to spy/chatroom_mgmt.h diff --git a/spy/rpc_server.cpp b/spy/rpc_server.cpp index 6ca982d..6bb21fa 100644 --- a/spy/rpc_server.cpp +++ b/spy/rpc_server.cpp @@ -17,7 +17,7 @@ #include "wcf.pb.h" #include "accept_new_friend.h" -#include "add_chatroom_member.h" +#include "chatroom_mgmt.h" #include "decrypt_image.h" #include "exec_sql.h" #include "get_contacts.h"