mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
15 lines
No EOL
405 B
C++
15 lines
No EOL
405 B
C++
#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;
|
|
}; |