| 123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #include "afxwin.h"
- // SoftAuth 对话框
- class SoftAuth : public CDialogEx
- {
- DECLARE_DYNAMIC(SoftAuth)
- public:
- SoftAuth(CWnd* pParent = NULL); // 标准构造函数
- virtual ~SoftAuth();
- // 对话框数据
- enum { IDD = IDD_DIALOG1 };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- CEdit m_show;
- CEdit m_Enter;
- afx_msg void OnBnClickedOk();
- private:
- char* m_showdata;
- public:
- void InitDlg(char* ch);
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- virtual BOOL OnInitDialog();
- };
- extern bool isReg;
- extern char Inputchar[50];
|