AnyConnect Secure Mobility Client
4.0.00061
|
00001 /******************************************************************************\ 00002 * This sample is supplied as is with no implied warranty. 00003 * It is designed to assist you in using the Cisco AnyConnect VPN API. 00004 * It is assumed that you will build a production application and 00005 * refer to this sample as a reference only. 00006 \*****************************************************************************/ 00007 00008 #pragma once 00009 00010 #ifndef __AFXWIN_H__ 00011 #error "include 'stdafx.h' before including this file for PCH" 00012 #endif 00013 00014 class GUIClientImpl; 00015 00016 #include "resource.h" 00017 #include "MainDialog.h" 00018 00019 00020 class Gui : public CWinApp 00021 { 00022 public: 00023 Gui(); 00024 virtual ~Gui(); 00025 MainDialog *m_pDlg; 00026 00027 virtual BOOL InitInstance(); 00028 00029 // Implementation 00030 DECLARE_MESSAGE_MAP() 00031 }; 00032 00033 extern Gui theApp;