Update of /cvsroot/pure-data/externals/frankenstein In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12392
Modified Files: harmonizer.c Log Message: changing mode_t to chordmode_t as it conflicts with darwin stdlib
Index: harmonizer.c =================================================================== RCS file: /cvsroot/pure-data/externals/frankenstein/harmonizer.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** harmonizer.c 8 Dec 2005 16:31:10 -0000 1.2 --- harmonizer.c 10 Dec 2005 15:14:12 -0000 1.3 *************** *** 67,71 **** kDim7=8, kHalfDim7=9 ! } mode_t;
typedef enum {C=0, --- 67,71 ---- kDim7=8, kHalfDim7=9 ! } chordmode_t;
typedef enum {C=0, *************** *** 88,92 **** typedef struct _chord { ! mode_t mode; note_t note; } chord_t; --- 88,92 ---- typedef struct _chord { ! chordmode_t mode; note_t note; } chord_t; *************** *** 199,203 **** }
! mode_t string2mode(const char *substr) { if (strstr(substr, "minor/major 7th")) --- 199,203 ---- }
! chordmode_t string2mode(const char *substr) { if (strstr(substr, "minor/major 7th"))