aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/py/source/main.h')
-rw-r--r--externals/grill/py/source/main.h4
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)
};