diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2006-10-22 21:46:11 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2006-10-22 21:46:11 +0000 |
commit | 982d9823a3f4978b211841adff80c9bc6166c4e9 (patch) | |
tree | 85e51f843f5994f62f2b42fb7c30466c4fc5fdca /pd/src/m_pd.h | |
parent | bb23964c64578b5921e3adddabf033b4b7c4c548 (diff) |
test release for 0.41 (bug fixes for IA64).
svn path=/trunk/; revision=6154
Diffstat (limited to 'pd/src/m_pd.h')
-rw-r--r-- | pd/src/m_pd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pd/src/m_pd.h b/pd/src/m_pd.h index 8f22b765..19795414 100644 --- a/pd/src/m_pd.h +++ b/pd/src/m_pd.h @@ -9,9 +9,9 @@ extern "C" { #endif #define PD_MAJOR_VERSION 0 -#define PD_MINOR_VERSION 40 -#define PD_BUGFIX_VERSION 1 -#define PD_TEST_VERSION "" +#define PD_MINOR_VERSION 41 +#define PD_BUGFIX_VERSION 0 +#define PD_TEST_VERSION "test03" /* old name for "MSW" flag -- we have to take it for the sake of many old "nmakefiles" for externs, which will define NT and not MSW */ @@ -571,6 +571,7 @@ EXTERN_STRUCT _garray; EXTERN t_class *garray_class; EXTERN int garray_getfloatarray(t_garray *x, int *size, t_float **vec); +EXTERN int garray_getfloatwords(t_garray *x, int *size, t_word **vec); EXTERN float garray_get(t_garray *x, t_symbol *s, t_int indx); EXTERN void garray_redraw(t_garray *x); EXTERN int garray_npoints(t_garray *x); |