mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
69 lines
No EOL
1.6 KiB
C++
69 lines
No EOL
1.6 KiB
C++
/* copyright 2006 Ben Allison */
|
|
#include "api__alac.h"
|
|
#include "wa5_alac.h"
|
|
#include "factory_alac.h"
|
|
#include <bfc/platform/export.h>
|
|
#include <api/service/waservicefactory.h>
|
|
|
|
api_service *WASABI_API_SVC = 0;
|
|
api_config *AGAVE_API_CONFIG = 0;
|
|
|
|
static ALACFactory alacFactory;
|
|
static WA5_ALAC wa5_alac;
|
|
|
|
template <class api_T>
|
|
void ServiceBuild(api_T *&api_t, GUID factoryGUID_t)
|
|
{
|
|
if (WASABI_API_SVC)
|
|
{
|
|
waServiceFactory *factory = WASABI_API_SVC->service_getServiceByGuid(factoryGUID_t);
|
|
if (factory)
|
|
api_t = reinterpret_cast<api_T *>( factory->getInterface() );
|
|
}
|
|
}
|
|
|
|
template <class api_T>
|
|
void ServiceRelease(api_T *api_t, GUID factoryGUID_t)
|
|
{
|
|
if (WASABI_API_SVC && api_t)
|
|
{
|
|
waServiceFactory *factory = WASABI_API_SVC->service_getServiceByGuid(factoryGUID_t);
|
|
if (factory)
|
|
factory->releaseInterface(api_t);
|
|
}
|
|
api_t = NULL;
|
|
}
|
|
|
|
void WA5_ALAC::RegisterServices(api_service *service)
|
|
{
|
|
WASABI_API_SVC = service;
|
|
ServiceBuild(AGAVE_API_CONFIG, AgaveConfigGUID);
|
|
WASABI_API_SVC->service_register(&alacFactory);
|
|
}
|
|
|
|
int WA5_ALAC::RegisterServicesSafeModeOk()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
void WA5_ALAC::DeregisterServices(api_service *service)
|
|
{
|
|
service->service_deregister(&alacFactory);
|
|
ServiceRelease(AGAVE_API_CONFIG, AgaveConfigGUID);
|
|
}
|
|
|
|
extern "C" DLLEXPORT ifc_wa5component *GetWinamp5SystemComponent()
|
|
{
|
|
return &wa5_alac;
|
|
}
|
|
|
|
#ifdef CBCLASS
|
|
#undef CBCLASS
|
|
#endif
|
|
|
|
#define CBCLASS WA5_ALAC
|
|
START_DISPATCH;
|
|
VCB(API_WA5COMPONENT_REGISTERSERVICES, RegisterServices)
|
|
CB(15, RegisterServicesSafeModeOk)
|
|
VCB(API_WA5COMPONENT_DEREEGISTERSERVICES, DeregisterServices)
|
|
END_DISPATCH; |