aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-12 23:44:36 +0000
committerGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-12 23:44:36 +0000
commit0d8c08bb18cb9c35ddeb61fbb42823c46a9e5862 (patch)
treea25bf5609136fe7dab8373708a2b838b43ee028c
parent98614c4e0af687ddccce98c91c9d1dd445b937f9 (diff)
some changes to make all ext13 objects work in libdir format
svn path=/trunk/externals/ext13/; revision=7322
-rw-r--r--catch13~.c5
-rw-r--r--receive13~.c4
-rw-r--r--send13~.c4
-rw-r--r--sfwrite13~.c5
-rw-r--r--streamin13~.c5
-rw-r--r--streamout13~.c5
-rw-r--r--throw13~.c4
7 files changed, 31 insertions, 1 deletions
diff --git a/catch13~.c b/catch13~.c
index 2144377..9205f5c 100644
--- a/catch13~.c
+++ b/catch13~.c
@@ -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();
+}
diff --git a/send13~.c b/send13~.c
index 9575e0f..c4c9a2f 100644
--- a/send13~.c
+++ b/send13~.c
@@ -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();
+}
diff --git a/throw13~.c b/throw13~.c
index c992d81..98ca22c 100644
--- a/throw13~.c
+++ b/throw13~.c
@@ -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();
+}