1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/scripting/python/python.c

25 lines
455 B
C
Raw Normal View History

/* Python module */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <Python.h>
#include "elinks.h"
#include "main/module.h"
#include "scripting/python/core.h"
#include "scripting/python/hooks.h"
struct module python_scripting_module = struct_module(
/* name: */ "Python",
/* options: */ NULL,
/* hooks: */ python_scripting_hooks,
/* submodules: */ NULL,
/* data: */ NULL,
/* init: */ init_python,
/* done: */ cleanup_python
);