Jeff 96bf40c7a1 转储到git上。 há 6 anos atrás
..
Include 96bf40c7a1 转储到git上。 há 6 anos atrás
Lib 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnCore.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnCore.h 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnDVD.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnDVD.h 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnDVD.rc 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnDVD.sln 96bf40c7a1 转储到git上。 há 6 anos atrás
BurnDVD.vcproj 96bf40c7a1 转储到git上。 há 6 anos atrás
Burnhelper.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
CtrlHandler.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
FileInterface.h 96bf40c7a1 转储到git上。 há 6 anos atrás
FindFile.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
FindFile.h 96bf40c7a1 转储到git上。 há 6 anos atrás
ISOTrack.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
NeroProgress.h 96bf40c7a1 转储到git上。 há 6 anos atrás
README.md 96bf40c7a1 转储到git上。 há 6 anos atrás
ReadMe.txt 96bf40c7a1 转储到git上。 há 6 anos atrás
UpgradeLog.XML 96bf40c7a1 转储到git上。 há 6 anos atrás
UserDialog.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
resource.h 96bf40c7a1 转储到git上。 há 6 anos atrás
stdafx.cpp 96bf40c7a1 转储到git上。 há 6 anos atrás
stdafx.h 96bf40c7a1 转储到git上。 há 6 anos atrás

README.md

burndvd

Pure C++ project for CD/DVD burning use Nero Api
基于Nero SDK开发的CD/DVD刻录程序

##说明

  • 用Microsoft Visual C++ 2003开发,c++代码,容器只使用了STL
  • 编程生成为win32 dll
  • 项目背景:http://lutaf.com/109.htm
  • Nero SDK 下载地址:ftp://ftp6.nero.com/

##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;
    };