wxhelper/src/hook_recv_msg.h
2023-02-01 17:01:53 +08:00

10 lines
232 B
C

#ifndef HOOK_RECV_MSG_H_
#define HOOK_RECV_MSG_H_
/// @brief hook any address address+0x5
/// @param port 端口
/// @return 成功返回1,已经hook返回2
int HookRecvMsg(char* client_ip,int port);
int UnHookRecvMsg();
#endif