From 4215d864c0baf21a4f67ed3fe44e642b84708197 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 5 Mar 2003 04:40:52 +0000 Subject: "" svn path=/trunk/; revision=453 --- externals/grill/flext/source/flutil.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'externals/grill/flext/source/flutil.cpp') diff --git a/externals/grill/flext/source/flutil.cpp b/externals/grill/flext/source/flutil.cpp index f1035359..09c75377 100644 --- a/externals/grill/flext/source/flutil.cpp +++ b/externals/grill/flext/source/flutil.cpp @@ -26,4 +26,16 @@ void flext::ZeroMem(void *dst,int bytes) } - +bool flext::Forward(const t_symbol *recv,int argc,const t_atom *argv) +{ + t_class **cl = (t_class **)recv->s_thing; + if(!cl) return false; + +#if FLEXT_SYS == FLEXT_SYS_PD + pd_forwardmess(cl,argc,(t_atom *)argv); +#else + #error Not implemented +#endif + + return true; +} -- cgit v1.2.1