Leaked source code of windows server 2003
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.

64 lines
1.5 KiB

  1. // DeleteItem.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "viewex.h"
  5. #include "delitem.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /***********************************************************
  12. Function:
  13. Arguments:
  14. Return:
  15. Purpose:
  16. Author(s):
  17. Revision:
  18. Date:
  19. ***********************************************************/
  20. CDeleteItem::CDeleteItem(CWnd* pParent /*=NULL*/)
  21. : CDialog(CDeleteItem::IDD, pParent)
  22. {
  23. //{{AFX_DATA_INIT(CDeleteItem)
  24. m_strClass = _T("");
  25. m_strName = _T("");
  26. m_strParent = _T("");
  27. m_bRecursive = FALSE;
  28. //}}AFX_DATA_INIT
  29. }
  30. /***********************************************************
  31. Function:
  32. Arguments:
  33. Return:
  34. Purpose:
  35. Author(s):
  36. Revision:
  37. Date:
  38. ***********************************************************/
  39. void CDeleteItem::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CDeleteItem)
  43. DDX_Text(pDX, IDC_CLASS, m_strClass);
  44. DDX_Text(pDX, IDC_RELATIVENAME, m_strName);
  45. DDX_Text(pDX, IDC_PARENTNAME, m_strParent);
  46. DDX_Check(pDX, IDC_DELETERECURSIVE, m_bRecursive);
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CDeleteItem, CDialog)
  50. //{{AFX_MSG_MAP(CDeleteItem)
  51. // NOTE: the ClassWizard will add message map macros here
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CDeleteItem message handlers