From ec1e871abbe253dedb7cfcf0962f49c825983aa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Sun, 29 Apr 2007 10:29:57 +0000 Subject: win32... svn path=/trunk/externals/iem16/; revision=7617 --- src/iem16_table.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/iem16_table.c') diff --git a/src/iem16_table.c b/src/iem16_table.c index 91d9fc6..96daf88 100644 --- a/src/iem16_table.c +++ b/src/iem16_table.c @@ -92,10 +92,17 @@ static void table16_from(t_table16*x, t_symbol*s, int argc, t_atom*argv){ return; } s=atom_getsymbol(argv); argc--;argv++; +#if defined __WIN32__ || defined __WIN32 + // hmm, how do i import garray_class on w32?? + error("ack, windows hit the wall...tell me how to see garray_class"); + return; +#else if (!(a = (t_garray *)pd_findbyclass(s, garray_class))){ error("%s: no such array", s->s_name); return; - } else if (!garray_getfloatarray(a, &npoints, &vec)){ + } else +#endif + if (!garray_getfloatarray(a, &npoints, &vec)){ error("%s: bad template for tabread4", s->s_name); return; } -- cgit v1.2.1