wxhelper/src/send_message_mgr.h

20 lines
788 B
C
Raw Normal View History

2023-03-31 21:21:35 +08:00
#ifndef WXHELPER_SEND_MESSAGE_MGR_H_
#define WXHELPER_SEND_MESSAGE_MGR_H_
#include "base_mgr.h"
namespace wxhelper {
class SendMessageMgr:public BaseMgr {
public:
explicit SendMessageMgr(DWORD base);
~SendMessageMgr();
int SendText(wchar_t* wxid, wchar_t* msg);
int SendAtText(wchar_t* chat_room_id, wchar_t** wxids, int len, wchar_t* msg);
int SendImage(wchar_t *wxid, wchar_t *image_path);
int SendFile(wchar_t *wxid, wchar_t *file_path);
int ForwardMsg(wchar_t *wxid, unsigned long long msgid);
2023-05-31 14:58:07 +08:00
int ForwardPublicMsg(wchar_t* wxid, wchar_t* title, wchar_t* url, wchar_t* thumburl,wchar_t* senderId,wchar_t* senderName,wchar_t* digest);
2023-06-01 08:42:04 +08:00
int ForwardPublicMsgByMsgSvrId(wchar_t *wxid, unsigned long long msgid);
2023-03-31 21:21:35 +08:00
private:
};
} // namespace wxhelper
#endif