mirror of
https://github.com/rkd77/elinks.git
synced 2025-04-18 00:47:36 -04:00
13 lines
245 B
C
13 lines
245 B
C
|
|
#ifndef EL__SCRIPTING_PYTHON_CORE_H
|
|
#define EL__SCRIPTING_PYTHON_CORE_H
|
|
|
|
struct module;
|
|
struct session;
|
|
|
|
void alert_python_error(struct session *ses);
|
|
void init_python(struct module *module);
|
|
void cleanup_python(struct module *module);
|
|
|
|
#endif
|