blob: ab331908fb1edce946c28f8eb3a600c7ca8df37c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "obj_isoburner.h"
#include "BurnerCommon.h"
class ISOBurner : public obj_isoburner, protected BurnerCommon
{
public:
ISOBurner(obj_primo *_primo);
int Open();
int Write(wchar_t driveLetter, const wchar_t *isoFile, int flags, unsigned int speed, ifc_burner_writecallback *callback);
inline void ForceCallback() { BurnerCommon::TriggerCallback(); }
protected:
RECVS_DISPATCH;
};
|