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.

41 lines
961 B

  1. // DplApp.cpp : implementation file
  2. //
  3. #include "precomp.hxx"
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #undef THIS_FILE
  7. static char THIS_FILE[] = __FILE__;
  8. #endif
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDeployApp dialog
  11. CDeployApp::CDeployApp(CWnd* pParent /*=NULL*/)
  12. : CDialog(CDeployApp::IDD, pParent)
  13. {
  14. //{{AFX_DATA_INIT(CDeployApp)
  15. m_iDeployment = 0;
  16. //}}AFX_DATA_INIT
  17. }
  18. void CDeployApp::DoDataExchange(CDataExchange* pDX)
  19. {
  20. CDialog::DoDataExchange(pDX);
  21. //{{AFX_DATA_MAP(CDeployApp)
  22. DDX_Radio(pDX, IDC_RADIO1, m_iDeployment);
  23. //}}AFX_DATA_MAP
  24. }
  25. BEGIN_MESSAGE_MAP(CDeployApp, CDialog)
  26. //{{AFX_MSG_MAP(CDeployApp)
  27. // NOTE: the ClassWizard will add message map macros here
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDeployApp message handlers