Improve: Reduce master program redundant code

This commit is contained in:
yuanyuanxiang
2025-06-28 23:52:26 +08:00
parent 44f28defa2
commit c59232d179
39 changed files with 361 additions and 872 deletions

View File

@@ -5,15 +5,14 @@
// CServicesDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
class CServicesDlg : public CDialog
class CServicesDlg : public DialogBase
{
DECLARE_DYNAMIC(CServicesDlg)
public:
CServicesDlg(CWnd* pParent = NULL, IOCPServer* IOCPServer = NULL, CONTEXT_OBJECT *ContextObject = NULL); // <20><>׼<EFBFBD><D7BC><EFBFBD><EFBFBD><ECBAAF>
virtual ~CServicesDlg();
CONTEXT_OBJECT* m_ContextObject;
IOCPServer* m_iocpServer;
int ShowServicesList(void);
void OnReceiveComplete(void);
void ServicesConfig(BYTE bCmd);
@@ -41,4 +40,5 @@ public:
afx_msg void OnServicesStart();
afx_msg void OnServicesReflash();
afx_msg void OnNMRClickList(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnSize(UINT nType, int cx, int cy);
};