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.

57 lines
1.3 KiB

  1. /*****************************************************************************
  2. *
  3. * $Workfile: AddWelcm.h $
  4. *
  5. * Copyright (C) 1997 Hewlett-Packard Company.
  6. * Copyright (c) 1997 Microsoft Corporation.
  7. * All rights reserved.
  8. *
  9. * 11311 Chinden Blvd.
  10. * Boise, Idaho 83714
  11. *
  12. *****************************************************************************
  13. *
  14. * $Log: /StdTcpMon/TcpMonUI/AddWelcm.h $
  15. *
  16. * 2 9/12/97 9:43a Becky
  17. * Added Variable m_pParams
  18. *
  19. * 1 8/19/97 3:45p Becky
  20. * Redesign of the Port Monitor UI.
  21. *
  22. *****************************************************************************/
  23. #ifndef INC_ADDWELCOME_H
  24. #define INC_ADDWELCOME_H
  25. // Global Variables
  26. extern HINSTANCE g_hInstance;
  27. class CWelcomeDlg
  28. {
  29. public:
  30. CWelcomeDlg();
  31. ~CWelcomeDlg();
  32. public:
  33. BOOL OnInitDialog(HWND hDlg, WPARAM wParam, LPARAM lParam);
  34. BOOL OnCommand(HWND hDlg, WPARAM wParam, LPARAM lParam);
  35. BOOL OnNotify(HWND hDlg, WPARAM wParam, LPARAM lParam);
  36. private:
  37. ADD_PARAM_PACKAGE *m_pParams;
  38. }; // CWelcomeDlg
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42. // Dialogs
  43. INT_PTR CALLBACK WelcomeDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif // INC_ADDWELCOME_H