aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fllib.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-06-20 00:04:11 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-06-20 00:04:11 +0000
commite8625781a2763e3a8b1c57362cc5cfb88cfb5a34 (patch)
tree82c4e9ebcc5fa2801eaef1bec8a15083d0ca5cf0 /externals/grill/flext/source/fllib.cpp
parente50c649e0e3be83a7aba9729912fd022bf8e56e6 (diff)
more robust structure pack setting for Max/MSP @ Windows
fixed bug for Max/MSP when there's no signal inlet - Max: fixed reported bug (#67), where list elements are distributed over inlets - preprocessor symbol FLEXT_COMPATIBLE - if defined don't implement specialities of either PD or Max/MSP cosmetic changes to calm the compiler svn path=/trunk/; revision=5264
Diffstat (limited to 'externals/grill/flext/source/fllib.cpp')
-rwxr-xr-xexternals/grill/flext/source/fllib.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/externals/grill/flext/source/fllib.cpp b/externals/grill/flext/source/fllib.cpp
index 13690a24..ff70da2f 100755
--- a/externals/grill/flext/source/fllib.cpp
+++ b/externals/grill/flext/source/fllib.cpp
@@ -128,15 +128,17 @@ class flext_class:
public:
flext_class(t_class *&cl,flext_obj *(*newf)(int,t_atom *),void (*freef)(flext_hdr *));
+ t_class *const &clss;
+
flext_obj *(*newfun)(int,t_atom *);
void (*freefun)(flext_hdr *c);
- t_class *const &clss;
- flext_library *lib;
- bool dsp,attr,dist;
int argc;
int *argv;
+ flext_library *lib;
+ bool dsp,attr,dist;
+
flext_base::ItemCont meths,attrs;
};