source: win32/admin/PropMain.h @ abe53d3

Last change on this file since abe53d3 was abe53d3, checked in by Jelmer Vernooij <jelmer@…>, at 2005-11-07T16:42:49Z

More work on config manager

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#if !defined(AFX_PROPMAIN_H__F3EF57A7_15AA_4F36_B6C1_2EAD91127449__INCLUDED_)
2#define AFX_PROPMAIN_H__F3EF57A7_15AA_4F36_B6C1_2EAD91127449__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// PropMain.h : header file
8
9#include "Resource.h"
10//
11
12/////////////////////////////////////////////////////////////////////////////
13// CPropMain dialog
14
15class CPropMain : public CPropertyPage
16{
17        DECLARE_DYNCREATE(CPropMain)
18
19// Construction
20public:
21        CPropMain();
22        ~CPropMain();
23
24// Dialog Data
25        //{{AFX_DATA(CPropMain)
26        enum { IDD = IDD_PROPPAGE_MAIN };
27        CButton m_stopservice;
28        CButton m_startservice;
29        CEdit   m_ping_interval;
30        CButton m_Verbose;
31        //}}AFX_DATA
32
33
34// Overrides
35        // ClassWizard generate virtual function overrides
36        //{{AFX_VIRTUAL(CPropMain)
37        public:
38        virtual void OnOK();
39        protected:
40        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
41        //}}AFX_VIRTUAL
42
43// Implementation
44protected:
45        // Generated message map functions
46        //{{AFX_MSG(CPropMain)
47        virtual BOOL OnInitDialog();
48        afx_msg void OnStartService();
49        afx_msg void OnStopService();
50        //}}AFX_MSG
51        DECLARE_MESSAGE_MAP()
52
53};
54
55//{{AFX_INSERT_LOCATION}}
56// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
57
58#endif // !defined(AFX_PROPMAIN_H__F3EF57A7_15AA_4F36_B6C1_2EAD91127449__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.