15 lines
321 B
C
15 lines
321 B
C
|
#ifndef __WASABI_WA5_BMP_H
|
||
|
#define __WASABI_WA5_BMP_H
|
||
|
|
||
|
#include "../Agave/Component/ifc_wa5component.h"
|
||
|
|
||
|
class WA5_BMP : public ifc_wa5component
|
||
|
{
|
||
|
public:
|
||
|
void RegisterServices(api_service *service);
|
||
|
int RegisterServicesSafeModeOk();
|
||
|
void DeregisterServices(api_service *service);
|
||
|
protected:
|
||
|
RECVS_DISPATCH;
|
||
|
};
|
||
|
#endif
|