aboutsummaryrefslogtreecommitdiff
path: root/src/iem16_table.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-04-29 10:29:57 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-04-29 10:29:57 +0000
commitec1e871abbe253dedb7cfcf0962f49c825983aa9 (patch)
tree302f642b0347d2a892115f9da6338b91f363b89f /src/iem16_table.c
parent82265a69b891a0ec4faea74429fae35f90a3c106 (diff)
win32...
svn path=/trunk/externals/iem16/; revision=7617
Diffstat (limited to 'src/iem16_table.c')
-rw-r--r--src/iem16_table.c9
1 files changed, 8 insertions, 1 deletions
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;
}