wxhelper/src/contact.h
2023-02-06 11:21:13 +08:00

11 lines
168 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);
#endif