aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flinternal.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-01-28 04:57:18 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-01-28 04:57:18 +0000
commit966b830f95253c0c3c3b4675189270954ab9e153 (patch)
treeabd528bf8c812582174214cd36e635b94404796f /externals/grill/flext/source/flinternal.h
parent3e86a4527748e5de5c091ffcb4ae5ac2dd8abd8a (diff)
Max: use high-priority click instead of qelem for message-posting
svn path=/trunk/; revision=2551
Diffstat (limited to 'externals/grill/flext/source/flinternal.h')
-rw-r--r--externals/grill/flext/source/flinternal.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/externals/grill/flext/source/flinternal.h b/externals/grill/flext/source/flinternal.h
index 65ca8ea8..82c3b0fe 100644
--- a/externals/grill/flext/source/flinternal.h
+++ b/externals/grill/flext/source/flinternal.h
@@ -46,12 +46,12 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#define add_anything(clss,meth) class_addanything(clss,meth)
-#define newout_signal(clss) outlet_new(clss,gensym("signal"))
-#define newout_float(clss) outlet_new(clss,gensym("float"))
-#define newout_flint(clss) outlet_new(clss,gensym("float"))
-#define newout_list(clss) outlet_new(clss,gensym("list"))
-#define newout_symbol(clss) outlet_new(clss,gensym("symbol"))
-#define newout_anything(clss) outlet_new(clss,gensym("anything"))
+#define newout_signal(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_signal))
+#define newout_float(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_float))
+#define newout_flint(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_float))
+#define newout_list(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_list))
+#define newout_symbol(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_symbol))
+#define newout_anything(clss) outlet_new(clss,const_cast<t_symbol *>(flext::sym_anything))
#define outlet_flint(o,v) outlet_float(o,(float)(v))
@@ -60,6 +60,7 @@ typedef t_perfroutine t_dspmethod;
#define qelem_new clock_new
#define qelem_free clock_free
#define qelem_set clock_set
+#define qelem_front clock_set
#define qelem_unset clock_unset
#define CRITON()