From 966b830f95253c0c3c3b4675189270954ab9e153 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 28 Jan 2005 04:57:18 +0000 Subject: Max: use high-priority click instead of qelem for message-posting svn path=/trunk/; revision=2551 --- externals/grill/flext/source/flinternal.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'externals/grill/flext/source/flinternal.h') 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(flext::sym_signal)) +#define newout_float(clss) outlet_new(clss,const_cast(flext::sym_float)) +#define newout_flint(clss) outlet_new(clss,const_cast(flext::sym_float)) +#define newout_list(clss) outlet_new(clss,const_cast(flext::sym_list)) +#define newout_symbol(clss) outlet_new(clss,const_cast(flext::sym_symbol)) +#define newout_anything(clss) outlet_new(clss,const_cast(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() -- cgit v1.2.1