Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10553
Modified Files: z_zexy.c z_zexy.h Added Files: 0x260x260x7e.c 0x2e.c 0x3c0x7e.c 0x3d0x3d0x7e.c 0x3e0x7e.c 0x7c0x7c0x7e.c Removed Files: dot.c z_sigbin.c Log Message: split z_sigbin.c into separate files and adapted to the hexnameloader of the upcoming pd-0.40; changed the "dot.c" into "0x2e.c" (conforms to the hexnameloader)
so now each object is in a separate c-file which reflects the object's name in a generic way
--- z_sigbin.c DELETED ---
--- NEW FILE: 0x3c0x7e.c --- (This appears to be a binary file; contents omitted.)
--- NEW FILE: 0x3e0x7e.c --- (This appears to be a binary file; contents omitted.)
--- NEW FILE: 0x7c0x7c0x7e.c --- (This appears to be a binary file; contents omitted.)
--- dot.c DELETED ---
--- NEW FILE: 0x260x260x7e.c --- (This appears to be a binary file; contents omitted.)
Index: z_zexy.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** z_zexy.c 5 Jan 2006 11:53:24 -0000 1.6 --- z_zexy.c 20 Jan 2006 10:28:50 -0000 1.7 *************** *** 8,11 **** --- 8,17 ---- void z_zexy_setup(void) { + z_0x260x260x7e_setup(); /* 0x260x260x7e.c */ + z_0x2e_setup(); /* 0x2e.c */ + z_0x3c0x7e_setup(); /* 0x3c0x7e.c */ + z_0x3d0x3d0x7e_setup(); /* 0x3d0x3d0x7e.c */ + z_0x3e0x7e_setup(); /* 0x3e0x7e.c */ + z_0x7c0x7c0x7e_setup(); /* 0x7c0x7c0x7e.c */ z_a2l_setup(); /* a2l.c */ z_absgn__setup(); /* absgn~.c */ *************** *** 20,24 **** z_dfreq__setup(); /* dfreq~.c */ z_dirac__setup(); /* dirac~.c */ - z_dot_setup(); /* dot.c */ z_drip_setup(); /* drip.c */ z_envrms__setup(); /* envrms~.c */ --- 26,29 ---- *************** *** 72,76 **** z_winNT_portio_setup(); /* winNT_portio.c */ z_wrap_setup(); /* wrap.c */ - z_z_sigbin_setup(); /* z_sigbin.c */ z_z__setup(); /* z~.c */ } --- 77,80 ----
--- NEW FILE: 0x2e.c --- (This appears to be a binary file; contents omitted.)
Index: z_zexy.h =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** z_zexy.h 5 Jan 2006 11:53:24 -0000 1.6 --- z_zexy.h 20 Jan 2006 10:28:50 -0000 1.7 *************** *** 6,9 **** --- 6,15 ---- #ifndef Z_ZEXY_H__ #define Z_ZEXY_H__ + void z_0x260x260x7e_setup(void); /* 0x260x260x7e.c */ + void z_0x2e_setup(void); /* 0x2e.c */ + void z_0x3c0x7e_setup(void); /* 0x3c0x7e.c */ + void z_0x3d0x3d0x7e_setup(void); /* 0x3d0x3d0x7e.c */ + void z_0x3e0x7e_setup(void); /* 0x3e0x7e.c */ + void z_0x7c0x7c0x7e_setup(void); /* 0x7c0x7c0x7e.c */ void z_a2l_setup(void); /* a2l.c */ void z_absgn__setup(void); /* absgn~.c */ *************** *** 18,22 **** void z_dfreq__setup(void); /* dfreq~.c */ void z_dirac__setup(void); /* dirac~.c */ - void z_dot_setup(void); /* dot.c */ void z_drip_setup(void); /* drip.c */ void z_envrms__setup(void); /* envrms~.c */ --- 24,27 ---- *************** *** 70,74 **** void z_winNT_portio_setup(void); /* winNT_portio.c */ void z_wrap_setup(void); /* wrap.c */ - void z_z_sigbin_setup(void); /* z_sigbin.c */ void z_z__setup(void); /* z~.c */ #endif /* Z_ZEXY_H__ */ --- 75,78 ----
--- NEW FILE: 0x3d0x3d0x7e.c --- (This appears to be a binary file; contents omitted.)