AnyConnect Secure Mobility Client 5.1.10.233
Gui.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#ifndef __AFXWIN_H__
11 #error "include 'stdafx.h' before including this file for PCH"
12#endif
13
14class GUIClientImpl;
15
16#include "resource.h"
17#include "MainDialog.h"
18
19
20class Gui : public CWinApp
21{
22public:
23 Gui();
24 virtual ~Gui();
25 MainDialog *m_pDlg;
26
27 virtual BOOL InitInstance();
28
29// Implementation
30 DECLARE_MESSAGE_MAP()
31};
32
33extern Gui theApp;
Definition GUIClientImpl.h:23
Definition Gui.h:21
Definition MainDialog.h:29