mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 00:15:45 -04:00
Initial community commit
This commit is contained in:
20
Src/Plugins/SDK/burner/isocreator.h
Normal file
20
Src/Plugins/SDK/burner/isocreator.h
Normal file
@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include "obj_isocreator.h"
|
||||
#include "BurnerCommon.h"
|
||||
|
||||
|
||||
class ISOCreator : public obj_isocreator, protected BurnerCommon
|
||||
{
|
||||
public:
|
||||
ISOCreator(obj_primo *_primo);
|
||||
~ISOCreator();
|
||||
int Open(const wchar_t *volumeName, int format, int media);
|
||||
int AddFile(const wchar_t *source, const wchar_t *destination);
|
||||
int AddFolder(const wchar_t *folder);
|
||||
int Write(const wchar_t *destination, ifc_burner_writecallback *callback);
|
||||
inline void ForceCallback() { BurnerCommon::TriggerCallback(); }
|
||||
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
|
||||
};
|
Reference in New Issue
Block a user