diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-07 03:38:25 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-07 03:38:25 +0000 |
commit | d563db671892f0719195aeeb89cac6ee3fe7c69e (patch) | |
tree | 2724d6e05233b1b7c5e475938553b1b907c2cbf6 /externals/grill/py/source/main.h | |
parent | 58e4d7bbbdebe1ee96b318873391b634ca3b8a8f (diff) |
""
svn path=/trunk/; revision=1251
Diffstat (limited to 'externals/grill/py/source/main.h')
-rw-r--r-- | externals/grill/py/source/main.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/externals/grill/py/source/main.h b/externals/grill/py/source/main.h index 407fc8df..b293246e 100644 --- a/externals/grill/py/source/main.h +++ b/externals/grill/py/source/main.h @@ -69,6 +69,7 @@ protected: V m__doc(PyObject *obj); V m_dir() { m__dir(module); } + V mg_dir(AtomList &lst) { m__dir(module); } V m_doc() { m__doc(dict); } PyObject *module,*dict; // inherited user class module and associated dictionary @@ -76,6 +77,8 @@ protected: static I pyref; static const C *py_doc; + V GetDir(PyObject *obj,AtomList &lst); + V GetModulePath(const C *mod,C *dir,I len); V AddToPath(const C *dir); V SetArgs(I argc,const t_atom *argv); @@ -137,6 +140,7 @@ protected: FLEXT_ATTRVAR_B(detach) FLEXT_CALLBACK_V(m_stop) FLEXT_CALLBACK(m_dir) + FLEXT_ATTRGET_V(mg_dir) FLEXT_CALLBACK(m_doc) FLEXT_CALLBACK_T(tick) }; |