aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/clmeth.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-01-22 03:38:37 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-01-22 03:38:37 +0000
commitc970a0b61182435de534f39b32e8f29f5ef7b42f (patch)
tree96a819d9661a7cda1b55ecad0ca479002661336d /externals/grill/py/source/clmeth.cpp
parentf9b7710c9bf2b7d6574fb4c358b1c7ff8837719d (diff)
""
svn path=/trunk/; revision=1285
Diffstat (limited to 'externals/grill/py/source/clmeth.cpp')
-rw-r--r--externals/grill/py/source/clmeth.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/externals/grill/py/source/clmeth.cpp b/externals/grill/py/source/clmeth.cpp
index 0c28563a..0f4ad23e 100644
--- a/externals/grill/py/source/clmeth.cpp
+++ b/externals/grill/py/source/clmeth.cpp
@@ -1,8 +1,8 @@
/*
-py/pyext - python external object for PD and MaxMSP
+py/pyext - python external object for PD and Max/MSP
-Copyright (c) 2002-2003 Thomas Grill (xovo@gmx.net)
+Copyright (c) 2002-2004 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.
@@ -40,16 +40,20 @@ PyMethodDef pyext::attr_tbl[] =
const C *pyext::pyext_doc =
- "py/pyext - python external object for PD and MaxMSP, (C)2002 Thomas Grill\n"
+ "py/pyext - python external object for PD and Max/MSP, (C)2002-2004 Thomas Grill\n"
"\n"
"This is the pyext base class. Available methods:\n"
"_outlet(self,ix,args...): Send a message to an indexed outlet\n"
+#if FLEXT_SYS == FLEXT_SYS_PD
"_tocanvas(self,args...): Send a message to the parent canvas\n"
-#ifdef FLEXT_THREADS
- "_detach(self,int): Define whether a called Python method has its own thread\n"
#endif
"_bind(self,name,func): Bind a python function to a symbol\n"
"_unbind(self,name,func): Unbind a python function from a symbol\n"
+#ifdef FLEXT_THREADS
+ "_detach(self,int): Define whether a called Python method has its own thread\n"
+ "_stop(self): Stop running threads\n"
+#endif
+ "_isthreaded(self): Query whether threading is enabled\n"
;
PyObject* pyext::pyext__init__(PyObject *,PyObject *args)