mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
19 lines
356 B
C
19 lines
356 B
C
|
#ifndef WXHELPER_ACCOUNT_MGR_H_
|
|||
|
#define WXHELPER_ACCOUNT_MGR_H_
|
|||
|
#include "wechat_function.h"
|
|||
|
#include"base_mgr.h"
|
|||
|
namespace wxhelper{
|
|||
|
class AccountMgr: public BaseMgr
|
|||
|
{
|
|||
|
public:
|
|||
|
explicit AccountMgr(DWORD base);
|
|||
|
~AccountMgr();
|
|||
|
int GetSelfInfo(SelfInfoInner& out);
|
|||
|
|
|||
|
int CheckLogin();
|
|||
|
|
|||
|
int Logout();
|
|||
|
};
|
|||
|
|
|||
|
}
|
|||
|
#endif
|