From e1a8d751c3046c5d53bbabe2d2a7a23ef6b59831 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sat, 27 Mar 2004 03:22:14 +0000 Subject: "" svn path=/trunk/; revision=1484 --- externals/grill/flext/source/flstdc.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'externals/grill/flext/source/flstdc.h') diff --git a/externals/grill/flext/source/flstdc.h b/externals/grill/flext/source/flstdc.h index f55b362b..402ce01a 100644 --- a/externals/grill/flext/source/flstdc.h +++ b/externals/grill/flext/source/flstdc.h @@ -97,6 +97,7 @@ typedef t_clock t_qelem; #define WIN_VERSION 1 #endif + #include "ext.h" #include "ext_user.h" #include "z_dsp.h" @@ -111,7 +112,11 @@ typedef t_int t_flint; typedef t_symbol *t_symtype; typedef t_object *t_thing; -typedef void *t_qelem; +#if FLEXT_OS == FLEXT_OS_WIN +typedef void *t_qelem; // qelem not defined in Windows SDK +#else +typedef qelem t_qelem; +#endif typedef method t_method; typedef method t_newmethod; -- cgit v1.2.1