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.

82 lines
1.9 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1997 **/
  4. /**********************************************************************/
  5. /*
  6. sfmsess.h
  7. Prototypes for the sessions property page.
  8. FILE HISTORY:
  9. 8/20/97 ericdav Code moved into file managemnet snapin
  10. */
  11. #ifndef _SFMSESS_H
  12. #define _SFMSESS_H
  13. #ifndef _SFMUTIL_H
  14. #include "sfmutil.h"
  15. #endif
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19. // Sessions.h : header file
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMacFilesSessions dialog
  23. class CMacFilesSessions : public CPropertyPage
  24. {
  25. DECLARE_DYNCREATE(CMacFilesSessions)
  26. // Construction
  27. public:
  28. CMacFilesSessions();
  29. ~CMacFilesSessions();
  30. // Dialog Data
  31. //{{AFX_DATA(CMacFilesSessions)
  32. enum { IDD = IDP_SFM_SESSIONS };
  33. CEdit m_editMessage;
  34. CStatic m_staticSessions;
  35. CStatic m_staticForks;
  36. CStatic m_staticFileLocks;
  37. CButton m_buttonSend;
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generate virtual function overrides
  41. //{{AFX_VIRTUAL(CMacFilesSessions)
  42. public:
  43. virtual BOOL OnApply();
  44. virtual BOOL OnKillActive();
  45. virtual void OnOK();
  46. virtual BOOL OnSetActive();
  47. protected:
  48. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. protected:
  52. // Generated message map functions
  53. //{{AFX_MSG(CMacFilesSessions)
  54. afx_msg void OnButtonSend();
  55. virtual BOOL OnInitDialog();
  56. afx_msg void OnChangeEditMessage();
  57. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  58. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. public:
  62. CSFMPropertySheet * m_pSheet;
  63. };
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  66. #endif _SFMSESS_H