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.

55 lines
1.3 KiB

  1. //+---------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993 - 1997.
  5. //
  6. // File: newsrvr.h
  7. //
  8. // Contents: Defines the class CNewServer for the new server dialog
  9. //
  10. // Classes:
  11. //
  12. // Methods:
  13. //
  14. // History: 23-Apr-96 BruceMa Created.
  15. //
  16. //----------------------------------------------------------------------
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CNewServer dialog
  19. #ifndef _NEWSRVR_H_
  20. #define _NEWSRVR_H_
  21. class CNewServer : public CDialog
  22. {
  23. // Construction
  24. public:
  25. CNewServer(CWnd* pParent = NULL); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CNewServer)
  28. enum { IDD = IDD_DIALOG1 };
  29. // NOTE: the ClassWizard will add data members here
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CNewServer)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. // Generated message map functions
  40. //{{AFX_MSG(CNewServer)
  41. afx_msg void OnLocal();
  42. afx_msg void OnRemote();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. #endif //_NEWSRVR_H_