mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-06 02:19:24 +08:00
18 lines
569 B
C
18 lines
569 B
C
|
#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);
|
|||
|
|
|||
|
private:
|
|||
|
};
|
|||
|
} // namespace wxhelper
|
|||
|
#endif
|