12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #if !defined(AFX_TIMEOUTDLG_H__1310DFEA_F4BB_4341_BCC4_6ABBCB8E6DF0__INCLUDED_)
- #define AFX_TIMEOUTDLG_H__1310DFEA_F4BB_4341_BCC4_6ABBCB8E6DF0__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class TimeOutDlg : public CDialog
- {
- public:
- TimeOutDlg(CWnd* pParent = NULL);
- int m_ticks;
-
- enum { IDD = IDD_DLGTimeOut };
- CString m_psw2;
-
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
-
-
- afx_msg void OnPaint();
- virtual void OnOK();
- virtual void OnCancel();
- virtual BOOL OnInitDialog();
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|