/* copyright 2006 Ben Allison */ #include "api__alac.h" #include "wa5_alac.h" #include "factory_alac.h" #include #include api_service *WASABI_API_SVC = 0; api_config *AGAVE_API_CONFIG = 0; static ALACFactory alacFactory; static WA5_ALAC wa5_alac; template 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( factory->getInterface() ); } } template 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;