pure-data/extra/loop~/loop~.c

/* loop~ -- loop generator for sampling */

/*  Copyright 1997-1999 Miller Puckette.
Permission is granted to use this software for any purpose provided you
keep this copyright notice intact.

THE AUTHOR AND HIS EMPLOYERS MAKE NO WARRANTY, EXPRESS OR IMPLIED,
IN CONNECTION WITH THIS SOFTWARE.

This file is downloadable from http://www.crca.ucsd.edu/~msp .

*/

#ifdef PD
#include "m_pd.h"
#else
#define t_sample
#define t_float
#endif



t_loopctl;

static void loopctl_run(t_loopctl *x, t_sample *transposein,
        t_sample *windowin, t_sample *rawout, t_sample *windowout, int n)
{}

static void loopctl_init(t_loopctl *x)
{}

static void loopctl_set(t_loopctl *x, t_float val)
{}

#ifdef PD

t_loop;

static t_class *loop_class;

static void *loop_new(void)
{}

static t_int *loop_perform(t_int *w)
{}

static void loop_dsp(t_loop *x, t_signal **sp)
{}

static void loop_set(t_loop *x, t_floatarg val)
{}

static void loop_bang(t_loop *x)
{}

void loop_tilde_setup(void)
{}

#endif /* PD */