Files

54 lines
1.3 KiB
C++

#if !defined(AFX_PWDLG_H__BAEA8B21_1776_11D4_964F_00C0F02C4B69__INCLUDED_)
#define AFX_PWDLG_H__BAEA8B21_1776_11D4_964F_00C0F02C4B69__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// PWDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPWDlg dialog
class CPWDlg : public CDialog
{
// Construction
public:
void PassPWString(CString* pw, CString *user);
CPWDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CPWDlg)
enum { IDD = IDD_PWDLG };
CEdit m_edUsername;
CButton m_btnOK;
CEdit m_edPW2;
CEdit m_edPW1;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPWDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CPWDlg)
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CString * strUserName;
CString * strPassword;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PWDLG_H__BAEA8B21_1776_11D4_964F_00C0F02C4B69__INCLUDED_)