2006-10-19 10:20:26 -04:00
|
|
|
#ifndef EL__SCRIPTING_PYTHON_DOCUMENT_H
|
|
|
|
#define EL__SCRIPTING_PYTHON_DOCUMENT_H
|
|
|
|
|
|
|
|
#include <Python.h>
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-11-11 07:33:37 -05:00
|
|
|
PyObject *python_current_document(PyObject *self, PyObject *args);
|
|
|
|
extern char python_current_document_doc[];
|
|
|
|
PyObject *python_current_header(PyObject *self, PyObject *args);
|
|
|
|
extern char python_current_header_doc[];
|
|
|
|
PyObject *python_current_link_url(PyObject *self, PyObject *args);
|
|
|
|
extern char python_current_link_url_doc[];
|
|
|
|
PyObject *python_current_title(PyObject *self, PyObject *args);
|
|
|
|
extern char python_current_title_doc[];
|
|
|
|
PyObject *python_current_url(PyObject *self, PyObject *args);
|
|
|
|
extern char python_current_url_doc[];
|
2006-10-19 10:20:26 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-19 10:20:26 -04:00
|
|
|
#endif
|