mirror of https://github.com/tongzx/nt5src
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
47 lines
1.1 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: ReconnectDlg.h
|
|
//
|
|
// Module: CMMON32.EXE
|
|
//
|
|
// Synopsis: Define the reconnect dialog class CReconnectDlg
|
|
//
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
|
|
//
|
|
// Author: fegnsun Created 02/17/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef RECONNECTDLG_H
|
|
#define RECONNECTDLG_H
|
|
|
|
#include <windows.h>
|
|
//#include "ModalDlg.h"
|
|
#include "ModelessDlg.h"
|
|
|
|
class CCmConnection;
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// class CReconnectDlg
|
|
//
|
|
// Description: The class for reconnect prompt dialog
|
|
//
|
|
// History: fengsun Created 2/17/98
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
class CReconnectDlg : public CModelessDlg
|
|
{
|
|
public:
|
|
HWND Create(HINSTANCE hInstance, HWND hWndParent,
|
|
LPCTSTR lpszReconnectMsg, HICON hIcon);
|
|
|
|
protected:
|
|
virtual void OnOK();
|
|
virtual void OnCancel();
|
|
virtual BOOL OnInitDialog(); // WM_INITDIALOG
|
|
|
|
static const DWORD m_dwHelp[]; // help id pairs
|
|
};
|
|
|
|
#endif
|