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.

65 lines
1.3 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /**********************************************************************/
  5. /*
  6. srvname.hxx
  7. This file contains CHANGE_SERVER_NAME_DLG class definition
  8. FILE HISTORY:
  9. NarenG 12/15/92 Created
  10. */
  11. #ifndef _SRVNAME_HXX_
  12. #define _SRVNAME_HXX_
  13. /*************************************************************************
  14. NAME: CHANGE_SERVER_NAME_DLG
  15. SYNOPSIS: The class setting and viewing server parameters from the
  16. server manager and control panel dialogs. It contains the
  17. magic group for Session Limit, MLE for the login message and
  18. checkboxes for options, the OK, Cancel and help buttons.
  19. INTERFACE: CHANGE_SERVER_NAME_DLG () - Constructor
  20. PARENT: DIALOG_WINDOW
  21. USES: SLE, PUSH_BUTTON
  22. CAVEATS:
  23. NOTES:
  24. HISTORY:
  25. NarenG 12/15/92 Created
  26. **************************************************************************/
  27. class CHANGE_SERVER_NAME_DLG : public DIALOG_WINDOW
  28. {
  29. private:
  30. SLE _sleServerName;
  31. NLS_STR *_pnlsServerName;
  32. protected:
  33. virtual BOOL OnOK( VOID );
  34. virtual ULONG QueryHelpContext( VOID );
  35. public:
  36. CHANGE_SERVER_NAME_DLG( HWND hwndParent,
  37. NLS_STR *pnlsServerName );
  38. };
  39. #endif