AnyConnect Secure Mobility Client 5.1.10.233
PromptDialog.h
1/******************************************************************************\
2 * This sample is supplied as is with no implied warranty.
3 * It is designed to assist you in using the Cisco AnyConnect VPN API.
4 * It is assumed that you will build a production application and
5 * refer to this sample as a reference only.
6 \*****************************************************************************/
7
8#pragma once
9
10#include "stdafx.h"
11#include "MainDialog.h"
12// PromptDialog dialog
13
14class PromptDialog : public CDialog
15{
16 DECLARE_DYNAMIC(PromptDialog)
17
18public:
19 PromptDialog(MainDialog* pParent = NULL); // standard constructor
20 virtual ~PromptDialog();
21
22// Dialog Data
23 enum { IDD = IDD_PROMPTDIALOG };
24
25protected:
26 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
27 virtual BOOL OnInitDialog();
28 MainDialog *parentWindow;
29
30 DECLARE_MESSAGE_MAP()
31public:
32 afx_msg void OnEnChangeEdit1();
33 afx_msg void OnEnChangeEdit2();
34 afx_msg void OnEnChangeEdit3();
35 afx_msg void OnBnClickedOk();
36
37 CString m_text1;
38 CString m_text2;
39 CString m_text3;
40};
Definition MainDialog.h:29