www.pudn.com > CipherSystem.rar > PlayFairProcess.h
#pragma once
// PlayFairProcess 对话框
class PlayFairProcess : public CDialog
{
DECLARE_DYNAMIC(PlayFairProcess)
public:
PlayFairProcess(CWnd* pParent = NULL); // 标准构造函数
virtual ~PlayFairProcess();
// 对话框数据
enum { IDD = IDD_PLAYFAIR_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
CString m_strKey;
CString m_strShow;
int m_iMark;
afx_msg void OnBnClickedPfEncrypt();
afx_msg void OnBnClickedPfDecrypt();
afx_msg void OnBnClickedCancel();
afx_msg void OnBnClickedButtonShow();
};