1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
elinks/src/scripting/python/document.h

26 lines
709 B
C
Raw Normal View History

2006-10-19 10:20:26 -04:00
#ifndef EL__SCRIPTING_PYTHON_DOCUMENT_H
#define EL__SCRIPTING_PYTHON_DOCUMENT_H
#include <Python.h>
#ifdef __cplusplus
extern "C" {
#endif
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
#ifdef __cplusplus
}
#endif
2006-10-19 10:20:26 -04:00
#endif