mirror of
https://github.com/laomms/wxhelper.git
synced 2024-12-22 21:39:21 +08:00
17 lines
424 B
C
17 lines
424 B
C
|
#ifndef WXHELPER_SYNC_MSG_HOOK_H_
|
|||
|
#define WXHELPER_SYNC_MSG_HOOK_H_
|
|||
|
#include "hook.h"
|
|||
|
#include "singleton.h"
|
|||
|
#include "wechat_interface.h"
|
|||
|
namespace wxhelper{
|
|||
|
static wechat::function::__DoAddMsg kDoAddMsg= nullptr;
|
|||
|
class SyncMsgHook : public hook::BaseHook,public base::Singleton<SyncMsgHook> {
|
|||
|
public:
|
|||
|
void Init();
|
|||
|
private:
|
|||
|
static void HandleSyncMsg(int64_t param1, int64_t param2, int64_t param3);
|
|||
|
};
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endif
|