Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
20
Src/Plugins/SDK/burner/DataBurner.h
Normal file
20
Src/Plugins/SDK/burner/DataBurner.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
#include "obj_databurner.h"
|
||||
#include "BurnerCommon.h"
|
||||
|
||||
class DataBurner : public obj_databurner, protected BurnerCommon
|
||||
{
|
||||
public:
|
||||
DataBurner(obj_primo *primo);
|
||||
~DataBurner();
|
||||
int Open(const wchar_t *volumeName, wchar_t driveLetter, int format);
|
||||
int AddFile(const wchar_t *source, const wchar_t *destination);
|
||||
int AddFolder(const wchar_t *folder);
|
||||
int Write(int flags, unsigned int speed, ifc_burner_writecallback *callback);
|
||||
inline void ForceCallback() { BurnerCommon::TriggerCallback(); }
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
|
||||
private:
|
||||
wchar_t driveLetter;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue