From 1baf1d957e195290cfd59089767ca63a547a9917 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 7 Apr 2004 14:32:29 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r1560, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/mjlib/; revision=1561 --- mjLib.c | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 mjLib.c (limited to 'mjLib.c') diff --git a/mjLib.c b/mjLib.c new file mode 100644 index 0000000..a46f9a7 --- /dev/null +++ b/mjLib.c @@ -0,0 +1,42 @@ +#ifdef NT +#include "stdafx.h" +#endif +#include "mjLib.h" +#include "m_pd.h" +#include "things.h" + +typedef struct _mjLib +{ + t_object x_obj; +} t_mjLib; + +static t_class* mjLib_class; + + + +static void* mjLib_new(t_symbol* s) { + t_mjLib *x = (t_mjLib *)pd_new( mjLib_class); + return (x); +} + + void mjLib_setup(void) +{ + mjLib_class = class_new(gensym("mjLib"), (t_newmethod)mjLib_new, 0, + sizeof(t_mjLib), 0, (t_atomtype)0); + + pin_tilde_setup(); + metroplus_setup(); + monorhythm_setup(); + prob_setup(); + about_setup(); + synapseA_tilde_setup(); + n2m_setup(); + morse_setup(); + + post("mjLib by mark williamson"); + post("Contact: mark@junklight.com"); + post("website: http://www.junklight.com"); + post("mjLib: version: 0.1 "); + post("mjLib: compiled: "__DATE__); + post(""); +} -- cgit v1.2.1