mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
25 lines
529 B
C++
25 lines
529 B
C++
|
#include "BurnerCommon.h"
|
||
|
#include "api.h"
|
||
|
#include <api/service/waservicefactory.h>
|
||
|
|
||
|
BurnerCommon::BurnerCommon(obj_primo *_primo)
|
||
|
{
|
||
|
primo = _primo;
|
||
|
triggerEvent=0;
|
||
|
triggerEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
|
||
|
}
|
||
|
|
||
|
BurnerCommon::~BurnerCommon()
|
||
|
{
|
||
|
if (triggerEvent)
|
||
|
CloseHandle(triggerEvent);
|
||
|
|
||
|
waServiceFactory *sf = WASABI_API_SVC->service_getServiceByGuid(obj_primo::getServiceGuid());
|
||
|
if (sf) sf->releaseInterface(primo);
|
||
|
}
|
||
|
|
||
|
void BurnerCommon::TriggerCallback()
|
||
|
{
|
||
|
if (triggerEvent)
|
||
|
SetEvent(triggerEvent);
|
||
|
}
|