mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-08-27 16:17:43 +08:00
14 lines
312 B
C++
14 lines
312 B
C++
#ifndef WXHELPER_SNS_MGR_H_
|
|
#define WXHELPER_SNS_MGR_H_
|
|
#include "Windows.h"
|
|
#include "base_mgr.h"
|
|
namespace wxhelper{
|
|
class SNSMgr:public BaseMgr{
|
|
public:
|
|
explicit SNSMgr(DWORD base);
|
|
~SNSMgr();
|
|
int GetFirstPage();
|
|
int GetNextPage(ULONG64 sns_id);
|
|
};
|
|
}
|
|
#endif |