From 0d8c08bb18cb9c35ddeb61fbb42823c46a9e5862 Mon Sep 17 00:00:00 2001 From: Georg Holzmann Date: Fri, 12 Jan 2007 23:44:36 +0000 Subject: some changes to make all ext13 objects work in libdir format svn path=/trunk/externals/ext13/; revision=7322 --- catch13~.c | 5 +++++ receive13~.c | 4 ++++ send13~.c | 4 ++++ sfwrite13~.c | 5 ++++- streamin13~.c | 5 +++++ streamout13~.c | 5 +++++ throw13~.c | 4 ++++ 7 files changed, 31 insertions(+), 1 deletion(-) 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(); +} -- cgit v1.2.1