blob: aad89256bc5f4092a00a04e421404e57ec8307c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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
|