Source code of Windows XP (NT5)
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.

47 lines
1.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: ReconnectDlg.h
  4. //
  5. // Module: CMMON32.EXE
  6. //
  7. // Synopsis: Define the reconnect dialog class CReconnectDlg
  8. //
  9. // Copyright (c) 1998-1999 Microsoft Corporation
  10. //
  11. // Author: fegnsun Created 02/17/98
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef RECONNECTDLG_H
  15. #define RECONNECTDLG_H
  16. #include <windows.h>
  17. //#include "ModalDlg.h"
  18. #include "ModelessDlg.h"
  19. class CCmConnection;
  20. //+---------------------------------------------------------------------------
  21. //
  22. // class CReconnectDlg
  23. //
  24. // Description: The class for reconnect prompt dialog
  25. //
  26. // History: fengsun Created 2/17/98
  27. //
  28. //----------------------------------------------------------------------------
  29. class CReconnectDlg : public CModelessDlg
  30. {
  31. public:
  32. HWND Create(HINSTANCE hInstance, HWND hWndParent,
  33. LPCTSTR lpszReconnectMsg, HICON hIcon);
  34. protected:
  35. virtual void OnOK();
  36. virtual void OnCancel();
  37. virtual BOOL OnInitDialog(); // WM_INITDIALOG
  38. static const DWORD m_dwHelp[]; // help id pairs
  39. };
  40. #endif