aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyext.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-01-07 03:38:25 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-01-07 03:38:25 +0000
commitd563db671892f0719195aeeb89cac6ee3fe7c69e (patch)
tree2724d6e05233b1b7c5e475938553b1b907c2cbf6 /externals/grill/py/source/pyext.cpp
parent58e4d7bbbdebe1ee96b318873391b634ca3b8a8f (diff)
""
svn path=/trunk/; revision=1251
Diffstat (limited to 'externals/grill/py/source/pyext.cpp')
-rw-r--r--externals/grill/py/source/pyext.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/grill/py/source/pyext.cpp b/externals/grill/py/source/pyext.cpp
index 799de20a..e7b12756 100644
--- a/externals/grill/py/source/pyext.cpp
+++ b/externals/grill/py/source/pyext.cpp
@@ -12,7 +12,7 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#include <flinternal.h>
-FLEXT_LIB_V("pyext",pyext)
+FLEXT_LIB_V("pyext pyx",pyext)
V pyext::Setup(t_classid c)
{
@@ -23,6 +23,9 @@ V pyext::Setup(t_classid c)
FLEXT_CADDMETHOD_(c,0,"doc",m_doc);
FLEXT_CADDMETHOD_(c,0,"doc+",m_doc_);
+ FLEXT_CADDATTR_VAR(c,"args",args,ms_args);
+ FLEXT_CADDATTR_GET(c,"dir+",mg_dir_);
+
#ifdef FLEXT_THREADS
FLEXT_CADDATTR_VAR1(c,"detach",detach);
FLEXT_CADDMETHOD_(c,0,"stop",m_stop);