EstimatingDlg.cpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /******************************************************************************
  2. |* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. |* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. |* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. |* PARTICULAR PURPOSE.
  6. |*
  7. |* Copyright 1995-2005 Nero AG. All Rights Reserved.
  8. |*-----------------------------------------------------------------------------
  9. |* NeroSDK / NVAPIExample
  10. |*
  11. |* PROGRAM: EstimatingDlg.cpp
  12. |*
  13. |* PURPOSE: A dialog box that holds controls that display progress of
  14. |* transcoding disk and time estimation.
  15. ******************************************************************************/
  16. #include "stdafx.h"
  17. #include "NVAPIExample.h"
  18. #include "EstimatingDlg.h"
  19. #ifdef _DEBUG
  20. #define new DEBUG_NEW
  21. #undef THIS_FILE
  22. static char THIS_FILE[] = __FILE__;
  23. #endif
  24. CEstimatingDlg::CEstimatingDlg(CWnd* pParent /*=NULL*/)
  25. : CDialog(CEstimatingDlg::IDD, pParent)
  26. {
  27. //{{AFX_DATA_INIT(CEstimatingDlg)
  28. // NOTE: the ClassWizard will add member initialization here
  29. //}}AFX_DATA_INIT
  30. }
  31. void CEstimatingDlg::DoDataExchange(CDataExchange* pDX)
  32. {
  33. CDialog::DoDataExchange(pDX);
  34. //{{AFX_DATA_MAP(CEstimatingDlg)
  35. DDX_Control(pDX, IDC_PROGRESS, c_Progress);
  36. //}}AFX_DATA_MAP
  37. }
  38. BEGIN_MESSAGE_MAP(CEstimatingDlg, CDialog)
  39. //{{AFX_MSG_MAP(CEstimatingDlg)
  40. // NOTE: the ClassWizard will add message map macros here
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()