From 02e2217004783f3c23cef4adc872b8ebb9eaff1d Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sat, 8 Mar 2003 04:32:20 +0000 Subject: "" svn path=/trunk/; revision=457 --- externals/grill/flext/source/flsupport.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'externals/grill/flext/source/flsupport.h') diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index f7e65899..b76437cc 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -521,6 +521,11 @@ public: static bool Forward(const t_symbol *sym,AtomAnything &args) { return Forward(sym,args.Header(),args.Count(),args.Atoms()); } static bool Forward(const char *sym,AtomAnything &args) { return Forward(MakeSymbol(sym),args.Header(),args.Count(),args.Atoms()); } + static bool Forward(const t_symbol *sym,int argc,const t_atom *argv) { return Forward(sym,sym_list,argc,argv); } + + static bool Forward(const t_symbol *sym,AtomList &args) { return Forward(sym,args.Count(),args.Atoms()); } + static bool Forward(const char *sym,AtomList &args) { return Forward(MakeSymbol(sym),args.Count(),args.Atoms()); } + //! @} FLEXT_S_MSG @@ -881,6 +886,8 @@ public: bool Delay(double tm,void *data = NULL); //! Trigger a periodic interval bool Periodic(double tm,void *data = NULL); + //! Trigger immediately + bool Now(void *data = NULL) { return Delay(0,data); } //! Worker function, called on every timer event virtual void Work(); -- cgit v1.2.1