From 6adfba996c34b2c78515e8a50ad5928188d78612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 7 Feb 2008 23:05:57 +0000 Subject: reorganizing svn path=/trunk/; revision=9376 --- xgui/xgui-lib/oname2l.c | 73 ------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 xgui/xgui-lib/oname2l.c (limited to 'xgui/xgui-lib/oname2l.c') diff --git a/xgui/xgui-lib/oname2l.c b/xgui/xgui-lib/oname2l.c deleted file mode 100644 index 1b46e8a3..00000000 --- a/xgui/xgui-lib/oname2l.c +++ /dev/null @@ -1,73 +0,0 @@ -/* Copyright (c) 2002 Damien HENRY. -* For information on usage and redistribution, and for a DISCLAIMER OF ALL -* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ - -/* oname2l */ - -#include "m_pd.h" -#include - -typedef struct s_pd_obj_oname2l -{ - t_object x_obj; -} t_pd_obj_oname2l; - - -void oname2l_help(t_pd_obj_oname2l *x) -{ - post(" "); - post("oname2l v001"); - post("+ selector list :"); - post("++ help : this help !!!"); - post("++ symbol : will return a list of symbol"); - post(" "); -} - -void oname2l_symbol(t_pd_obj_oname2l *x,t_symbol *s) -{ - int i,j,l,n=1,k=0; - t_atom *my_message ; - char *s2split ; - t_symbol *a_symbol ; - t_atom *an_atom ; - for (l=0;s->s_name[l]!=0;l++) - { - if (s->s_name[l]=='/') {n++;} ; - } - s2split = (char *)getbytes(l+1) ; - memcpy(s2split, s->s_name, l+1) ; - my_message = (t_atom *)getbytes(n * sizeof(t_atom)); - an_atom = my_message ; - for (i=0;ix_obj.ob_outlet,gensym("list"), n,my_message); - freebytes(my_message, n * sizeof(t_atom)); - freebytes(s2split, l ); -} - -void oname2l_free(void) { } - -t_class *oname2l_class; - -void *oname2l_new(void) -{ - t_pd_obj_oname2l *x = (t_pd_obj_oname2l *)pd_new(oname2l_class); - outlet_new(&x->x_obj, &s_float); - return (void *)x; -} - -void oname2l_setup(void) -{ - oname2l_class = class_new(gensym("oname2l"), (t_newmethod)oname2l_new,(t_method)oname2l_free, sizeof( t_pd_obj_oname2l), 0,A_DEFSYMBOL, 0); - class_addsymbol(oname2l_class, (t_method)oname2l_symbol); - class_addmethod(oname2l_class, (t_method)oname2l_help, gensym("help"), 0); - class_sethelpsymbol(oname2l_class, gensym("xgui/help_oname2l")); -} - -- cgit v1.2.1