From 906c8c819e6089dcdde1925e82bdb88a10c3a5b1 Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Thu, 4 Oct 2007 16:31:59 +0000 Subject: deleted extra directories svn path=/trunk/externals/tof/; revision=8785 --- destroysend/destroysend.c | 50 ----------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 destroysend/destroysend.c (limited to 'destroysend/destroysend.c') diff --git a/destroysend/destroysend.c b/destroysend/destroysend.c deleted file mode 100644 index fbf3466..0000000 --- a/destroysend/destroysend.c +++ /dev/null @@ -1,50 +0,0 @@ -// Made by tof@danslchamp.prg - -#include "m_pd.h" -#include -#include - -static t_class *destroysend_class; - -typedef struct _destroysend { - t_object x_obj; - t_symbol *x_sym; //from pd_send -} t_destroysend; - -void destroysend_bang(t_destroysend *x) -{ - //post("Hello world !!"); -//From pd_send - if (x->x_sym->s_thing) pd_bang(x->x_sym->s_thing); -//END -} - - -void *destroysend_new(t_symbol *s) //Added args from pd send -{ - t_destroysend *x = (t_destroysend *)pd_new(destroysend_class); - -//From pd_send - - if (!*s->s_name) symbolinlet_new(&x->x_obj, &x->x_sym); - x->x_sym = s; - -//END - - return (void *)x; //return (x); -} - - -void *destroysend_free(t_destroysend *x) -{ - if (x->x_sym->s_thing) pd_bang(x->x_sym->s_thing); - //post("Killing !!"); - return 0; -} - -void destroysend_setup(void) { - - destroysend_class = class_new(gensym("destroysend"),(t_newmethod)destroysend_new,(t_method)destroysend_free, -sizeof(t_destroysend),0, A_DEFSYM, 0); - class_addbang(destroysend_class, destroysend_bang); -} -- cgit v1.2.1