aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flutil.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-06-07 14:13:50 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-06-07 14:13:50 +0000
commit86806ae2e1bb2799ff57ad8279be922e51e082e7 (patch)
treebe66c648156b0ca277723bfedb0e77e77564cfbf /externals/grill/flext/source/flutil.cpp
parent313b88bebb43ba33af9f3dc4d967607137043662 (diff)
changed initialization functions accordingly
small fix slimmed object data structures digest one-element list messages as single atoms made flext::Forward threadsafe small fixes simplified message analysis svn path=/trunk/; revision=3125
Diffstat (limited to 'externals/grill/flext/source/flutil.cpp')
-rw-r--r--externals/grill/flext/source/flutil.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/externals/grill/flext/source/flutil.cpp b/externals/grill/flext/source/flutil.cpp
index b4aba60c..3437ee75 100644
--- a/externals/grill/flext/source/flutil.cpp
+++ b/externals/grill/flext/source/flutil.cpp
@@ -46,19 +46,3 @@ void flext::ZeroMem(void *dst,int bytes)
memset(dst,0,bytes);
#endif
}
-
-
-bool flext::Forward(const t_symbol *recv,const t_symbol *s,int argc,const t_atom *argv)
-{
- void *cl = recv->s_thing;
- if(!cl) return false;
-
-#if FLEXT_SYS == FLEXT_SYS_PD
- pd_typedmess((t_class **)cl,(t_symbol *)s,argc,(t_atom *)argv);
-#elif FLEXT_SYS == FLEXT_SYS_MAX
- typedmess(recv->s_thing,(t_symbol *)s,argc,(t_atom *)argv);
-#else
-#error Not implemented
-#endif
- return true;
-}