mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
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;
|
||||
};
|
Reference in New Issue
Block a user