|
|
hace 6 años | |
|---|---|---|
| .. | ||
| Include | hace 6 años | |
| Lib | hace 6 años | |
| BurnCore.cpp | hace 6 años | |
| BurnCore.h | hace 6 años | |
| BurnDVD.cpp | hace 6 años | |
| BurnDVD.h | hace 6 años | |
| BurnDVD.rc | hace 6 años | |
| BurnDVD.sln | hace 6 años | |
| BurnDVD.vcproj | hace 6 años | |
| Burnhelper.cpp | hace 6 años | |
| CtrlHandler.cpp | hace 6 años | |
| FileInterface.h | hace 6 años | |
| FindFile.cpp | hace 6 años | |
| FindFile.h | hace 6 años | |
| ISOTrack.cpp | hace 6 años | |
| NeroProgress.h | hace 6 años | |
| README.md | hace 6 años | |
| ReadMe.txt | hace 6 años | |
| UpgradeLog.XML | hace 6 años | |
| UserDialog.cpp | hace 6 años | |
| resource.h | hace 6 años | |
| stdafx.cpp | hace 6 años | |
| stdafx.h | hace 6 años | |
Pure C++ project for CD/DVD burning use Nero Api
基于Nero SDK开发的CD/DVD刻录程序
##说明
##Dll接口文档
in FileInterface.h
typedef struct tagCNode
{
string szLocalPath;
bool Recursive;
}CNode;
typedef list<CNode*> CFileList;
class IWriteCD
{
public:
virtual EXITCODE SetCDParam(CDPARAM *cdParam)=0;
virtual NERO_CD_INFO * GetCDParam()=0;//return 0 when failed
virtual EXITCODE BurnData(const CFileList *listRecData)=0;
virtual void StopBurn()=0;
virtual EXITCODE InitNero()=0;
};