WeChatFerry/spy/receive_msg.h

16 lines
259 B
C
Raw Normal View History

2022-10-15 20:25:42 +08:00
#pragma once
2023-02-16 22:04:31 +08:00
#include <map>
#include <string>
typedef std::map<int, std::string> MsgTypes_t;
MsgTypes_t GetMsgTypes();
#if 0
2022-10-15 20:25:42 +08:00
#include "../proto/wcf.grpc.pb.h"
2022-08-13 20:03:22 +08:00
void ListenMessage();
void UnListenMessage();
2022-10-16 22:14:06 +08:00
void GetMsgTypes(wcf::MsgTypes *types);
#endif