win-xp-sp2-20040325
[openafs.git] / src / WINNT / win9xpanel / Force.cpp
1 /* Copyright 2000, International Business Machines Corporation and others.
2         All Rights Reserved.
3  
4         This software has been released under the terms of the IBM Public
5         License.  For details, see the LICENSE file in the top-level source
6         directory or online at http://www.openafs.org/dl/license10.html
7 */
8 // Force.cpp : implementation file
9 //
10
11 #include "stdafx.h"
12 #include "winafsload.h"
13 #include "Force.h"
14
15 #ifdef _DEBUG
16 #define new DEBUG_NEW
17 #undef THIS_FILE
18 static char THIS_FILE[] = __FILE__;
19 #endif
20
21 /////////////////////////////////////////////////////////////////////////////
22 // CForce dialog
23
24
25 CForce::CForce(CWnd* pParent /*=NULL*/)
26         : CDialog(CForce::IDD, pParent)
27 {
28         //{{AFX_DATA_INIT(CForce)
29         m_sMsg = _T("");
30         //}}AFX_DATA_INIT
31 }
32
33
34 void CForce::DoDataExchange(CDataExchange* pDX)
35 {
36         CDialog::DoDataExchange(pDX);
37         //{{AFX_DATA_MAP(CForce)
38         DDX_Text(pDX, IDC_STATICMSG, m_sMsg);
39         //}}AFX_DATA_MAP
40 }
41
42
43 BEGIN_MESSAGE_MAP(CForce, CDialog)
44         //{{AFX_MSG_MAP(CForce)
45                 // NOTE: the ClassWizard will add message map macros here
46         //}}AFX_MSG_MAP
47 END_MESSAGE_MAP()
48
49 /////////////////////////////////////////////////////////////////////////////
50 // CForce message handlers