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

@@ -4,15 +4,14 @@
#include "IOCPServer.h"
// CSystemDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
class CSystemDlg : public CDialog
class CSystemDlg : public DialogBase
{
DECLARE_DYNAMIC(CSystemDlg)
public:
CSystemDlg(CWnd* pParent = NULL, IOCPServer* IOCPServer = NULL, CONTEXT_OBJECT *ContextObject = NULL);
virtual ~CSystemDlg();
CONTEXT_OBJECT* m_ContextObject;
IOCPServer* m_iocpServer;
VOID GetProcessList(void);
VOID ShowProcessList(void);
void ShowWindowsList(void);
@@ -45,4 +44,5 @@ public:
afx_msg void OnWlistRecover();
afx_msg void OnWlistMax();
afx_msg void OnWlistMin();
afx_msg void OnSize(UINT nType, int cx, int cy);
};