Windows2003-3790/termsrv/newclient/clshell/connectingdlg.h
2020-09-30 16:53:55 +02:00

32 lines
778 B
C++

//
// connectingdlg.h: connecting dialog box
//
#ifndef _connectingdlg_h_
#define _connectingdlg_h_
#include "dlgbase.h"
#include "contwnd.h"
class CConnectingDlg : public CDlgBase
{
public:
CConnectingDlg(HWND hwndOwner, HINSTANCE hInst,
CContainerWnd* pContWnd, PDCTCHAR szServer);
~CConnectingDlg();
virtual DCINT DoModal();
virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
static CConnectingDlg* _pConnectingDlgInstance;
private:
CContainerWnd* _pContainerWnd;
DCTCHAR _szServer[SH_MAX_ADDRESS_LENGTH];
};
#endif //_connectingdlg_h_