author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | 9938ea772d372ba955b7bc1f1c48a062c3a36f8a (patch) (unidiff) | |
tree | a98185df944e3a763f9557aa74bc2837b343f048 /PropsNetwork.h | |
download | pumpkin-9938ea772d372ba955b7bc1f1c48a062c3a36f8a.zip pumpkin-9938ea772d372ba955b7bc1f1c48a062c3a36f8a.tar.gz pumpkin-9938ea772d372ba955b7bc1f1c48a062c3a36f8a.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/pumpkin/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | PropsNetwork.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/PropsNetwork.h b/PropsNetwork.h new file mode 100644 index 0000000..67d0b53 --- a/dev/null +++ b/PropsNetwork.h | |||
@@ -0,0 +1,45 @@ | |||
1 | // PropsNetwork.h : header file | ||
2 | // | ||
3 | |||
4 | ///////////////////////////////////////////////////////////////////////////// | ||
5 | // CPropsNetwork dialog | ||
6 | |||
7 | class CPropsNetwork : public CPropertyPage | ||
8 | { | ||
9 | DECLARE_DYNCREATE(CPropsNetwork) | ||
10 | |||
11 | // Construction | ||
12 | public: | ||
13 | CPropsNetwork(); | ||
14 | ~CPropsNetwork(); | ||
15 | |||
16 | // Dialog Data | ||
17 | //{{AFX_DATA(CPropsNetwork) | ||
18 | enum { IDD = IDD_PROPS_NETWORK }; | ||
19 | CSpinButtonCtrlm_BSizeSpinCtl; | ||
20 | CSpinButtonCtrlm_TimeSpinCtl; | ||
21 | CSpinButtonCtrlm_SpeakSpinCtl; | ||
22 | CSpinButtonCtrlm_ListenSpinCtl; | ||
23 | UINTm_ListenPort; | ||
24 | UINTm_SpeakPort; | ||
25 | UINTm_TimeOut; | ||
26 | UINTm_BlockSize; | ||
27 | //}}AFX_DATA | ||
28 | |||
29 | |||
30 | // Overrides | ||
31 | // ClassWizard generate virtual function overrides | ||
32 | //{{AFX_VIRTUAL(CPropsNetwork) | ||
33 | protected: | ||
34 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | ||
35 | //}}AFX_VIRTUAL | ||
36 | |||
37 | // Implementation | ||
38 | protected: | ||
39 | // Generated message map functions | ||
40 | //{{AFX_MSG(CPropsNetwork) | ||
41 | virtual BOOL OnInitDialog(); | ||
42 | //}}AFX_MSG | ||
43 | DECLARE_MESSAGE_MAP() | ||
44 | |||
45 | }; | ||