CDBurn.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // CDBurn.h : main header file for the CDBURN application
  2. //
  3. #if !defined(AFX_CDBURN_H__FA68E6D2_6EEE_4F63_9050_CE4D96051895__INCLUDED_)
  4. #define AFX_CDBURN_H__FA68E6D2_6EEE_4F63_9050_CE4D96051895__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. #include "DiscRecorder.h"
  13. #include "DiscMaster.h"
  14. #include "DiscFormatData.h"
  15. #include "DiscFormatDataEvent.h"
  16. #include "fileobject.h"
  17. #include <afxtempl.h>
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CCDBurnApp:
  20. // See CDBurn.cpp for the implementation of this class
  21. //
  22. class CCDBurnApp : public CWinApp
  23. {
  24. public :
  25. // CList<CDiscFormatData* , CDiscFormatData*> m_listDiscFormatDate;
  26. CList<CDiscRecorder * , CDiscRecorder* > m_listDiscRecorder;
  27. CDiscRecorder *m_pCurDiscRecorder;
  28. CFile m_cLogFile;
  29. BOOL m_bPopupDrivers;
  30. BOOL m_bLogFile; //ÊÇ·ñÐèҪдÈëÈÕ¼Ç
  31. CString m_cstrCurDriver;
  32. CString m_cstrFilePath;
  33. ULONGLONG m_ullFree;
  34. public:
  35. BOOL RecorderFile(CString FileName, CString CurRecorderName);
  36. BOOL InitRecorder();
  37. BOOL ReadDisc();
  38. CCDBurnApp();
  39. ~CCDBurnApp();
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CCDBurnApp)
  43. public:
  44. virtual BOOL InitInstance();
  45. //}}AFX_VIRTUAL
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_CDBURN_H__FA68E6D2_6EEE_4F63_9050_CE4D96051895__INCLUDED_)