mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
23 lines
484 B
C++
23 lines
484 B
C++
#ifndef WXHELPER_HOOKS_H_
|
|
#define WXHELPER_HOOKS_H_
|
|
#include "Windows.h"
|
|
#include "wechat_function.h"
|
|
namespace wxhelper {
|
|
namespace hooks {
|
|
extern UserInfo userinfo;
|
|
extern bool user_info_flag_ ;
|
|
|
|
int HookRecvMsg(char* client_ip, int port);
|
|
|
|
int UnHookRecvMsg();
|
|
|
|
void SendSocketMessage(InnerMessageStruct* msg);
|
|
|
|
int HookLog();
|
|
int UnHookLog();
|
|
int HookSearchContact();
|
|
int UnHookSearchContact();
|
|
void DeleteUserInfoCache();
|
|
} // namespace hooks
|
|
} // namespace wxhelper
|
|
#endif |