[PD-cvs] pd/src desire.c, 1.1.2.72, 1.1.2.73 m_pd.h, 1.4.4.11.2.21, 1.4.4.11.2.22

Mathieu Bouchard matju at users.sourceforge.net
Sun Apr 23 08:22:30 CEST 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5883

Modified Files:
      Tag: devel_0_39
	desire.c m_pd.h 
Log Message:
public appendix allocators. you shouldn't use them yourself, but...


Index: m_pd.h
===================================================================
RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v
retrieving revision 1.4.4.11.2.21
retrieving revision 1.4.4.11.2.22
diff -C2 -d -r1.4.4.11.2.21 -r1.4.4.11.2.22
*** m_pd.h	22 Apr 2006 00:43:40 -0000	1.4.4.11.2.21
--- m_pd.h	23 Apr 2006 06:22:28 -0000	1.4.4.11.2.22
***************
*** 199,202 ****
--- 199,204 ----
  	t_atom dirtyv[3];
  } t_appendix;
+ t_appendix *appendix_new (t_gobj *master);
+ void appendix_free(t_gobj *self);
  #endif
  

Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.72
retrieving revision 1.1.2.73
diff -C2 -d -r1.1.2.72 -r1.1.2.73
*** desire.c	23 Apr 2006 05:48:03 -0000	1.1.2.72
--- desire.c	23 Apr 2006 06:22:28 -0000	1.1.2.73
***************
*** 67,70 ****
--- 67,74 ----
  }
  
+ void appendix_free (t_gobj *self) {
+ 	free(self);
+ }
+ 
  /* subscribing N spies takes N*N time, but it's not important for now */
  void gobj_subscribe (t_gobj *self, t_gobj *observer) {





More information about the Pd-cvs mailing list