Leaked source code of windows server 2003
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.
|
|
//
// 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_
|