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.

31 lines
778 B

  1. //
  2. // connectingdlg.h: connecting dialog box
  3. //
  4. #ifndef _connectingdlg_h_
  5. #define _connectingdlg_h_
  6. #include "dlgbase.h"
  7. #include "contwnd.h"
  8. class CConnectingDlg : public CDlgBase
  9. {
  10. public:
  11. CConnectingDlg(HWND hwndOwner, HINSTANCE hInst,
  12. CContainerWnd* pContWnd, PDCTCHAR szServer);
  13. ~CConnectingDlg();
  14. virtual DCINT DoModal();
  15. virtual INT_PTR CALLBACK DialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  16. static INT_PTR CALLBACK StaticDialogBoxProc(HWND hwndDlg, UINT uMsg,WPARAM wParam, LPARAM lParam);
  17. static CConnectingDlg* _pConnectingDlgInstance;
  18. private:
  19. CContainerWnd* _pContainerWnd;
  20. DCTCHAR _szServer[SH_MAX_ADDRESS_LENGTH];
  21. };
  22. #endif //_connectingdlg_h_