You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
778 B
31 lines
778 B
//
|
|
// 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_
|
|
|