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.

55 lines
1.1 KiB

  1. /*****************************************************************************
  2. *
  3. * $Workfile: AddDone.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. #ifndef INC_ADDDONE_H
  14. #define INC_ADDDONE_H
  15. // Global Variables
  16. extern HINSTANCE g_hInstance;
  17. #define MAX_YESNO_SIZE 10
  18. #define MAX_PROTOCOL_AND_PORTNUM_SIZE 20
  19. class CSummaryDlg
  20. {
  21. public:
  22. CSummaryDlg();
  23. ~CSummaryDlg();
  24. public:
  25. BOOL OnInitDialog(HWND hDlg, WPARAM wParam, LPARAM lParam);
  26. BOOL OnNotify(HWND hDlg, WPARAM wParam, LPARAM lParam);
  27. protected:
  28. BOOL OnFinish();
  29. DWORD RemoteTellPortMonToCreateThePort();
  30. DWORD LocalTellPortMonToCreateThePort();
  31. void FillTextFields(HWND hDlg);
  32. private:
  33. ADD_PARAM_PACKAGE *m_pParams;
  34. }; // CSummaryDlg
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. // Dialogs
  39. INT_PTR CALLBACK SummaryDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif // INC_ADDDONE_H