blob: a68887b06063c382359e94f3fafc6817a286f12c (
plain)
1
2
3
4
5
6
7
8
9
|
/*#include <m_pd.h>*/
#include "../../pd/src/m_pd.h"
void pureunity_setup() {
t_pd *m = &pd_objectmaker;
class_addcreator((t_newmethod)getfn(m,gensym( "inlet" )),gensym("f.inlet" ),A_GIMME,0);
class_addcreator((t_newmethod)getfn(m,gensym( "inlet~")),gensym("~.inlet" ),A_GIMME,0);
class_addcreator((t_newmethod)getfn(m,gensym("outlet" )),gensym("f.outlet"),A_GIMME,0);
class_addcreator((t_newmethod)getfn(m,gensym("outlet~")),gensym("~.outlet"),A_GIMME,0);
}
|