aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flstdc.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-03-27 03:22:14 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-03-27 03:22:14 +0000
commite1a8d751c3046c5d53bbabe2d2a7a23ef6b59831 (patch)
treec48dce1d5cbf3ff019ad1318df4c37fed6f89313 /externals/grill/flext/source/flstdc.h
parent49026dca683b1dfbfe3af25737e0ea455c279d1a (diff)
""
svn path=/trunk/; revision=1484
Diffstat (limited to 'externals/grill/flext/source/flstdc.h')
-rw-r--r--externals/grill/flext/source/flstdc.h7
1 files changed, 6 insertions, 1 deletions
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;