2022-12-21 20:30:44 +08:00
|
|
|
#ifndef CONTACT_H_
|
|
|
|
#define CONTACT_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "wechat_data.h"
|
|
|
|
|
2023-02-06 11:21:13 +08:00
|
|
|
int GetAllContact(std::vector<Contact> &vec);
|
2022-12-21 20:30:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int DelContact(wchar_t* wxid);
|
2023-02-13 11:30:33 +08:00
|
|
|
|
|
|
|
std::wstring GetContactOrChatRoomNickname(wchar_t* id);
|
2023-02-17 08:44:51 +08:00
|
|
|
|
|
|
|
int AddFriendByWxid(wchar_t *wxid);
|
2022-12-21 20:30:44 +08:00
|
|
|
#endif
|