wxhelper/src/hooks.h

19 lines
369 B
C
Raw Normal View History

2023-06-26 18:23:47 +08:00
#ifndef WXHELPER_HOOKS_H_
#define WXHELPER_HOOKS_H_
#include "Windows.h"
#include "wechat_function.h"
namespace wxhelper {
namespace hooks {
int HookSyncMsg(std::string client_ip, int port, std::string url, uint64_t timeout,
bool enable);
int UnHookSyncMsg();
2023-07-27 21:18:42 +08:00
int HookLog();
int UnHookLog();
2023-06-26 18:23:47 +08:00
} // namespace hooks
} // namespace wxhelper
#endif