[PD-cvs] externals/iem16/src iem16_table.c,1.6,1.7

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Sun Apr 29 12:44:48 CEST 2007


Update of /cvsroot/pure-data/externals/iem16/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32439

Modified Files:
	iem16_table.c 
Log Message:
fixed terminating "0" in class_addmethod


Index: iem16_table.c
===================================================================
RCS file: /cvsroot/pure-data/externals/iem16/src/iem16_table.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** iem16_table.c	29 Apr 2007 10:29:57 -0000	1.6
--- iem16_table.c	29 Apr 2007 10:44:45 -0000	1.7
***************
*** 220,228 ****
  			    (t_newmethod)table16_new, (t_method)table16_free,
  			    sizeof(t_table16), 0, A_DEFSYM, A_DEFFLOAT, 0);
!   class_addmethod(table16_class, (t_method)table16_resize, gensym("resize"), A_DEFFLOAT);
!   class_addmethod(table16_class, (t_method)table16_const, gensym("const"), A_DEFFLOAT);
!   class_addmethod(table16_class, (t_method)table16_from, gensym("from"), A_GIMME);
    class_addmethod(table16_class, (t_method)table16_read16, gensym("read16"),  A_SYMBOL, 
!                   A_DEFFLOAT, A_DEFSYM, A_NULL);
  }
  
--- 220,228 ----
  			    (t_newmethod)table16_new, (t_method)table16_free,
  			    sizeof(t_table16), 0, A_DEFSYM, A_DEFFLOAT, 0);
!   class_addmethod(table16_class, (t_method)table16_resize, gensym("resize"), A_DEFFLOAT, 0);
!   class_addmethod(table16_class, (t_method)table16_const, gensym("const"), A_DEFFLOAT, 0);
!   class_addmethod(table16_class, (t_method)table16_from, gensym("from"), A_GIMME, 0);
    class_addmethod(table16_class, (t_method)table16_read16, gensym("read16"),  A_SYMBOL, 
!                   A_DEFFLOAT, A_DEFSYM, 0);
  }
  





More information about the Pd-cvs mailing list