Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27253
Modified Files: Tag: desiredata m_pd.h Log Message: adding class_setonsubscribe(t_class*,void(*)(t_gobj *,t_gobj *))
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.4.4.11.2.33.2.69 retrieving revision 1.4.4.11.2.33.2.70 diff -C2 -d -r1.4.4.11.2.33.2.69 -r1.4.4.11.2.33.2.70 *** m_pd.h 3 Aug 2007 05:47:28 -0000 1.4.4.11.2.33.2.69 --- m_pd.h 15 Aug 2007 16:40:31 -0000 1.4.4.11.2.33.2.70 *************** *** 119,123 ****
#if !defined(_SIZE_T) && !defined(_SIZE_T_) ! #include <stddef.h> /* just for size_t -- how lame! */ #endif
--- 119,123 ----
#if !defined(_SIZE_T) && !defined(_SIZE_T_) ! #include <stddef.h> #endif
*************** *** 587,592 **** class_domainsignalin(c, (char *)(&((type *)0)->field) - (char *)0)
! typedef void (*t_notice)(struct _gobj *x, struct _gobj *origin, int argc, t_atom *argv); ! EXTERN void class_setnotice(t_class *c, t_notice notice);
/* prototype for functions to save Pd's to a binbuf */ --- 587,594 ---- class_domainsignalin(c, (char *)(&((type *)0)->field) - (char *)0)
! typedef void (*t_notice)( struct _gobj *x, struct _gobj *origin, int argc, t_atom *argv); ! typedef void (*t_onsubscribe)(struct _gobj *x, struct _gobj *origin); ! EXTERN void class_setnotice( t_class *c, t_notice notice); ! EXTERN void class_setonsubscribe(t_class *c, t_onsubscribe onsubscribe);
/* prototype for functions to save Pd's to a binbuf */