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.
57 lines
1.3 KiB
57 lines
1.3 KiB
/*****************************************************************************
|
|
*
|
|
* $Workfile: AddWelcm.h $
|
|
*
|
|
* Copyright (C) 1997 Hewlett-Packard Company.
|
|
* Copyright (c) 1997 Microsoft Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* 11311 Chinden Blvd.
|
|
* Boise, Idaho 83714
|
|
*
|
|
*****************************************************************************
|
|
*
|
|
* $Log: /StdTcpMon/TcpMonUI/AddWelcm.h $
|
|
*
|
|
* 2 9/12/97 9:43a Becky
|
|
* Added Variable m_pParams
|
|
*
|
|
* 1 8/19/97 3:45p Becky
|
|
* Redesign of the Port Monitor UI.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef INC_ADDWELCOME_H
|
|
#define INC_ADDWELCOME_H
|
|
|
|
// Global Variables
|
|
extern HINSTANCE g_hInstance;
|
|
|
|
class CWelcomeDlg
|
|
{
|
|
public:
|
|
CWelcomeDlg();
|
|
~CWelcomeDlg();
|
|
|
|
public:
|
|
BOOL OnInitDialog(HWND hDlg, WPARAM wParam, LPARAM lParam);
|
|
BOOL OnCommand(HWND hDlg, WPARAM wParam, LPARAM lParam);
|
|
BOOL OnNotify(HWND hDlg, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
ADD_PARAM_PACKAGE *m_pParams;
|
|
|
|
}; // CWelcomeDlg
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Dialogs
|
|
INT_PTR CALLBACK WelcomeDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // INC_ADDWELCOME_H
|