blob: 4dd2aa427e2290ce3f84c958137ee7eb1c4b7151 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
};
|