From d6b088044e161a27d49df537bbb6d998a8d0e50d Mon Sep 17 00:00:00 2001 From: musil Date: Sat, 9 Dec 2006 02:00:52 +0000 Subject: // class_sethelpsymbol(); changed help-*.pd to *-help.pd chanded file structure to standard 1st step remove old svn path=/trunk/externals/iemlib/; revision=6756 --- iem_mp3/src/iem_mp3.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 iem_mp3/src/iem_mp3.c (limited to 'iem_mp3/src/iem_mp3.c') diff --git a/iem_mp3/src/iem_mp3.c b/iem_mp3/src/iem_mp3.c new file mode 100644 index 0000000..b8a7a8b --- /dev/null +++ b/iem_mp3/src/iem_mp3.c @@ -0,0 +1,31 @@ +/* For information on usage and redistribution, and for a DISCLAIMER OF ALL +* WARRANTIES, see the file, "LICENSE.txt," in this distribution. + +iem_mp3 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 */ + +#include "m_pd.h" +#include "iemlib.h" + +static t_class *iem_mp3_class; + +static void *iem_mp3_new(void) +{ + t_object *x = (t_object *)pd_new(iem_mp3_class); + + return (x); +} + +void mp3play_tilde_setup(void); + +/* ------------------------ setup routine ------------------------- */ + +void iem_mp3_setup(void) +{ + iem_mp3_class = class_new(gensym("iem_mp3"), iem_mp3_new, 0, + sizeof(t_object), CLASS_NOINLET, 0); + + mp3play_tilde_setup(); + + post("iem_mp3 (R-1.17) library loaded! (c) Thomas Musil 11.2006"); + post(" musil%ciem.at iem KUG Graz Austria", '@'); +} -- cgit v1.2.1