From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Plugins/SDK/irctell/irctell.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Src/Plugins/SDK/irctell/irctell.h (limited to 'Src/Plugins/SDK/irctell/irctell.h') diff --git a/Src/Plugins/SDK/irctell/irctell.h b/Src/Plugins/SDK/irctell/irctell.h new file mode 100644 index 00000000..3054aec1 --- /dev/null +++ b/Src/Plugins/SDK/irctell/irctell.h @@ -0,0 +1,29 @@ +#ifndef _GENERIC_H +#define _GENERIC_H + + +#include +#include +#include "../Agave/Component/ifc_wa5component.h" +#include + +enum { patch_wa5, patch_core, patch_svc}; +class WACIrctell :public MultiPatch, + public MultiPatch, + public MultiPatch +{ + +public: + void RegisterServices(api_service *service); + void DeregisterServices(api_service *service); + + int ccb_notify(int msg, int param1=0, int param2=0); + + FOURCC getEventType(); + int notify(int msg, int param1 = 0, int param2 = 0); + +protected: + RECVS_MULTIPATCH; +}; + +#endif -- cgit