wxhelper/src/hooks.h
2023-06-26 18:23:47 +08:00

15 lines
335 B
C++

#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();
} // namespace hooks
} // namespace wxhelper
#endif