aboutsummaryrefslogtreecommitdiff
path: root/src/iem_delay.c
blob: 1ba36075379aec1a4669de25d423f35de31cc090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.

iem_delay written by Thomas Musil (c) IEM KUG Graz Austria 2002 - 2006 */

#include "m_pd.h"
#include "iemlib.h"

static t_class *iem_delay_class;

static void *iem_delay_new(void)
{
	t_object *x = (t_object *)pd_new(iem_delay_class);
    
	return (x);
}

void n_delay1p_line_tilde_setup(void);
void n_delay2p_line_tilde_setup(void);
void nz_tilde_setup(void);
void block_delay_tilde_setup(void);

/* ------------------------ setup routine ------------------------- */

void iem_delay_setup(void)
{
	n_delay1p_line_tilde_setup();
	n_delay2p_line_tilde_setup();
	nz_tilde_setup();
	block_delay_tilde_setup();

    post("iem_delay (R-1.16) library loaded!   (c) Thomas Musil 05.2005");
	post("   musil%ciem.at iem KUG Graz Austria", '@');
}