diff options
author | N.N. <matju@users.sourceforge.net> | 2006-01-02 17:03:11 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2006-01-02 17:03:11 +0000 |
commit | 34feefab41a761a4e0a38ec69191299161b57f18 (patch) | |
tree | 357716a0d8c4689d02e6f77863526c6621681526 | |
parent | 35ef784adf86ce8f41411b540c5324a8e912fc7c (diff) |
added aliases [#.inlet] [#.outlet]
svn path=/trunk/abstractions/pureunity/; revision=4353
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | pureunity.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ PD = /home/matju/pd_0_38_4/bin/pd -noaudio #PD = pd PDFLAGS = -lib pureunity -noaudio -path generics -path specifics +# PDFLAGS += -lib gridflow CFLAGS = -Wall test:: built diff --git a/pureunity.c b/pureunity.c index c721be1..4db49bd 100644 --- a/pureunity.c +++ b/pureunity.c @@ -29,8 +29,10 @@ void rtimer_1_bang(t_rtimer *self) { void pureunity_setup() { t_pd *m = &pd_objectmaker; ALIAS( "f.inlet","inlet" ); + ALIAS( "#.inlet","inlet" ); ALIAS( "~.inlet","inlet~" ); ALIAS("f.outlet","outlet" ); + ALIAS("#.outlet","outlet" ); ALIAS("~.outlet","outlet~"); ALIAS( "f.swap","swap" ); rtimer_class = class_new(gensym("rtimer"),(t_newmethod)rtimer_new,0,sizeof(t_rtimer),0,0); |