1234567891011121314151617181920212223 |
- #ifndef __WX_MRG__
- #define __WX_MRG__
- #include <map>
- #include "CWxObject.h"
- #pragma once
- class CWxMgr
- {
- public:
- CWxMgr();
- ~CWxMgr();
- private:
- std::map<DWORD, CWxObject> m_mapWx;
- BOOL AttachUnMgrWxProc();
- public:
- BOOL OpenWeChat();
- };
- #endif //__WX_MRG__
|