diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2003-01-02 04:37:31 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2003-01-02 04:37:31 +0000 |
commit | 10e0265429983876e2fd69950df4d51c8faf5635 (patch) | |
tree | 3e1c45e40bedd1b92225696ce955b902c4daf8e0 /externals/grill/flext/tutorial/adv2 | |
parent | 59e66762250fe61d570c5baf6c9ce6896a09e027 (diff) |
""
svn path=/trunk/; revision=316
Diffstat (limited to 'externals/grill/flext/tutorial/adv2')
-rw-r--r-- | externals/grill/flext/tutorial/adv2/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/externals/grill/flext/tutorial/adv2/main.cpp b/externals/grill/flext/tutorial/adv2/main.cpp index 32adaf85..10322010 100644 --- a/externals/grill/flext/tutorial/adv2/main.cpp +++ b/externals/grill/flext/tutorial/adv2/main.cpp @@ -1,7 +1,7 @@ /* flext tutorial - advanced 2 -Copyright (c) 2002 Thomas Grill (xovo@gmx.net) +Copyright (c) 2002,2003 Thomas Grill (xovo@gmx.net) For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "license.txt," in this distribution. @@ -46,12 +46,12 @@ private: // define the _static_ class setup function static void setup(t_class *c); - FLEXT_CALLBACK(m_tag); - FLEXT_CALLBACK_I(m_tag_and_int); - FLEXT_CALLBACK_S(m_sym); + FLEXT_CALLBACK(m_tag) + FLEXT_CALLBACK_I(m_tag_and_int) + FLEXT_CALLBACK_S(m_sym) }; -// instantiate the class (constructor has a variable argument list) +// instantiate the class (constructor takes no arguments) FLEXT_NEW("adv2",adv2) |