diff options
author | Georg Holzmann <grholzi@users.sourceforge.net> | 2007-01-12 23:44:36 +0000 |
---|---|---|
committer | Georg Holzmann <grholzi@users.sourceforge.net> | 2007-01-12 23:44:36 +0000 |
commit | 0d8c08bb18cb9c35ddeb61fbb42823c46a9e5862 (patch) | |
tree | a25bf5609136fe7dab8373708a2b838b43ee028c | |
parent | 98614c4e0af687ddccce98c91c9d1dd445b937f9 (diff) |
some changes to make all ext13 objects work in libdir format
svn path=/trunk/externals/ext13/; revision=7322
-rw-r--r-- | catch13~.c | 5 | ||||
-rw-r--r-- | receive13~.c | 4 | ||||
-rw-r--r-- | send13~.c | 4 | ||||
-rw-r--r-- | sfwrite13~.c | 5 | ||||
-rw-r--r-- | streamin13~.c | 5 | ||||
-rw-r--r-- | streamout13~.c | 5 | ||||
-rw-r--r-- | throw13~.c | 4 |
7 files changed, 31 insertions, 1 deletions
@@ -85,4 +85,9 @@ void sigcatch13_setup(void) class_addmethod(sigcatch13_class, (t_method)sigcatch13_dsp, gensym("dsp"), 0); } +void catch13_tilde_setup() +{ + sigcatch13_setup(); +} + diff --git a/receive13~.c b/receive13~.c index a9e1b2f..4811d93 100644 --- a/receive13~.c +++ b/receive13~.c @@ -119,4 +119,8 @@ void sigreceive13_setup(void) 0); } +void receive13_tilde_setup() +{ + sigreceive13_setup(); +} @@ -74,3 +74,7 @@ void sigsend13_setup(void) class_addmethod(sigsend13_class, (t_method)sigsend13_dsp, gensym("dsp"), 0); } +void send13_tilde_setup() +{ + sigsend13_setup(); +} diff --git a/sfwrite13~.c b/sfwrite13~.c index 48720df..1b1da3e 100644 --- a/sfwrite13~.c +++ b/sfwrite13~.c @@ -298,7 +298,10 @@ void sfwrite13_setup(void) }
-
+void sfwrite13_tilde_setup()
+{
+ void sfwrite13_setup();
+}
diff --git a/streamin13~.c b/streamin13~.c index 0b8f4c0..d0d7529 100644 --- a/streamin13~.c +++ b/streamin13~.c @@ -309,3 +309,8 @@ void streamin13_setup(void) class_addmethod(streamin13_class, (t_method) streamin13_dsp, gensym("dsp"), 0); class_addmethod(streamin13_class, (t_method)streamin13_port,gensym("port"),A_DEFFLOAT,0); } + +void streamin13_tilde_setup() +{ + streamin13_setup(); +} diff --git a/streamout13~.c b/streamout13~.c index 2dc5725..915cc61 100644 --- a/streamout13~.c +++ b/streamout13~.c @@ -389,3 +389,8 @@ void streamout13_setup(void) class_addmethod(streamout13_class, (t_method)streamout13_host,gensym("host"),A_DEFSYM,0); } + +void streamout13_tilde_setup() +{ + streamout13_setup(); +} @@ -90,4 +90,8 @@ void sigthrow13_setup(void) class_addmethod(sigthrow13_class, (t_method)sigthrow13_dsp, gensym("dsp"), 0); } +void throw13_tilde_setup() +{ + sigthrow13_setup(); +} |