13 lines
225 B
C++
13 lines
225 B
C++
#ifndef CONTACT_H_
|
|
#define CONTACT_H_
|
|
#include <vector>
|
|
#include "wechat_data.h"
|
|
|
|
int GetAllContact(std::vector<Contact> &vec);
|
|
|
|
|
|
|
|
int DelContact(wchar_t* wxid);
|
|
|
|
std::wstring GetContactOrChatRoomNickname(wchar_t* id);
|
|
#endif |