1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
2006-10-19 15:21:39 +02:00

25 lines
455 B
C

/* 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
);