18 lines
364 B
C
18 lines
364 B
C
|
/* copyright 2006 Ben Allison */
|
||
|
#ifndef __WASABI_WA5_ALAC_H
|
||
|
#define __WASABI_WA5_ALAC_H
|
||
|
|
||
|
#include "../Agave/Component/ifc_wa5component.h"
|
||
|
|
||
|
class WA5_ALAC : public ifc_wa5component
|
||
|
{
|
||
|
public:
|
||
|
void RegisterServices( api_service *service );
|
||
|
int RegisterServicesSafeModeOk();
|
||
|
void DeregisterServices( api_service *service );
|
||
|
|
||
|
protected:
|
||
|
RECVS_DISPATCH;
|
||
|
};
|
||
|
|
||
|
#endif
|