Plugin: Add another file management module

This commit is contained in:
yuanyuanxiang
2025-06-28 22:26:45 +08:00
parent 1d2ac9d241
commit 44f28defa2
21 changed files with 3160 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
#pragma once
/////////////////////////////////////////////////////////////////////////////
// CFileTransferModeDlg dialog
namespace file {
class CFileTransferModeDlg : public CDialog
{
public:
CString m_strFileName;
CFileTransferModeDlg(CWnd* pParent = NULL);
enum { IDD = IDD_TRANSFERMODE_DLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX);
protected:
afx_msg void OnEndDialog(UINT id);
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOverwrite();
afx_msg void OnBnClickedOverwriteAll();
afx_msg void OnBnClickedAddition();
afx_msg void OnBnClickedAdditionAll();
afx_msg void OnBnClickedJump();
afx_msg void OnBnClickedJumpAll();
afx_msg void OnBnClickedCancel();
DECLARE_MESSAGE_MAP()
};
}