From c1419b43ea354fa04360450ae4f64612df065099 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 14 Nov 2005 21:59:09 +0000 Subject: these pragmas are only used for MSVC, not MinGW or Cygwin, therefore changing the define from NT to _MSC_VER svn path=/trunk/externals/ggee/; revision=3903 --- control/unserialize.c | 114 +++++++++++++++++++++++++------------------------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'control/unserialize.c') diff --git a/control/unserialize.c b/control/unserialize.c index 6133ead..a061a25 100755 --- a/control/unserialize.c +++ b/control/unserialize.c @@ -1,57 +1,57 @@ -/* (C) Guenter Geiger */ - - -#include -#ifdef NT -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) -#endif - -/* ------------------------ unserialize ----------------------------- */ - -#define MAX_ELEMENTS 256 - -static t_class *unserialize_class; - - -typedef struct _unserialize -{ - t_object x_obj; - t_atom x_abuf[MAX_ELEMENTS]; - t_int x_count; - t_int x_elements; -} t_unserialize; - - -void unserialize_float(t_unserialize *x,t_floatarg f) -{ - SETFLOAT(&x->x_abuf[x->x_count],f); - x->x_count++; - - if (x->x_count == x->x_elements) { - outlet_list(x->x_obj.ob_outlet,0,x->x_count,x->x_abuf); - x->x_count = 0; - } -} - - -static void *unserialize_new(t_floatarg f) -{ - t_unserialize *x = (t_unserialize *)pd_new(unserialize_class); - outlet_new(&x->x_obj,&s_float); - x->x_elements = f; - x->x_count=0; - if ((f <= 0) || (f > MAX_ELEMENTS)) x->x_elements = 1; - return (x); -} - - - -void unserialize_setup(void) -{ - unserialize_class = class_new(gensym("unserialize"), (t_newmethod)unserialize_new, - 0,sizeof(t_unserialize),0, A_DEFFLOAT,0); - class_addfloat(unserialize_class,unserialize_float); -} - - +/* (C) Guenter Geiger */ + + +#include +#ifdef _MSC_VER +#pragma warning( disable : 4244 ) +#pragma warning( disable : 4305 ) +#endif + +/* ------------------------ unserialize ----------------------------- */ + +#define MAX_ELEMENTS 256 + +static t_class *unserialize_class; + + +typedef struct _unserialize +{ + t_object x_obj; + t_atom x_abuf[MAX_ELEMENTS]; + t_int x_count; + t_int x_elements; +} t_unserialize; + + +void unserialize_float(t_unserialize *x,t_floatarg f) +{ + SETFLOAT(&x->x_abuf[x->x_count],f); + x->x_count++; + + if (x->x_count == x->x_elements) { + outlet_list(x->x_obj.ob_outlet,0,x->x_count,x->x_abuf); + x->x_count = 0; + } +} + + +static void *unserialize_new(t_floatarg f) +{ + t_unserialize *x = (t_unserialize *)pd_new(unserialize_class); + outlet_new(&x->x_obj,&s_float); + x->x_elements = f; + x->x_count=0; + if ((f <= 0) || (f > MAX_ELEMENTS)) x->x_elements = 1; + return (x); +} + + + +void unserialize_setup(void) +{ + unserialize_class = class_new(gensym("unserialize"), (t_newmethod)unserialize_new, + 0,sizeof(t_unserialize),0, A_DEFFLOAT,0); + class_addfloat(unserialize_class,unserialize_float); +} + + -- cgit v1.2.1