mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-08-03 06:17:35 +08:00
21 lines
630 B
C++
21 lines
630 B
C++
#ifndef WXHELPER_MANAGER_H_
|
|
#define WXHELPER_MANAGER_H_
|
|
#include "Windows.h"
|
|
#include "wechat_function.h"
|
|
namespace wxhelper {
|
|
class Manager {
|
|
public:
|
|
explicit Manager(UINT64 base);
|
|
~Manager();
|
|
INT64 CheckLogin();
|
|
INT64 GetSelfInfo(common::SelfInfoInner& out);
|
|
INT64 SendTextMsg(const std::wstring& wxid, const std::wstring& msg);
|
|
INT64 SendImageMsg(const std::wstring& wxid, const std::wstring& image_path);
|
|
INT64 SendFileMsg(const std::wstring& wxid, const std::wstring& file_path);
|
|
INT64 GetContacts(std::vector<common::ContactInner> &vec);
|
|
private:
|
|
UINT64 base_addr_;
|
|
};
|
|
|
|
} // namespace wxhelper
|
|
#endif |