mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
23 lines
418 B
C
23 lines
418 B
C
|
/* Guile module */
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
|
#include "elinks.h"
|
||
|
|
||
|
#include "main/module.h"
|
||
|
#include "scripting/guile/core.h"
|
||
|
#include "scripting/guile/hooks.h"
|
||
|
|
||
|
|
||
|
struct module guile_scripting_module = struct_module(
|
||
|
/* name: */ "Guile",
|
||
|
/* options: */ NULL,
|
||
|
/* events: */ guile_scripting_hooks,
|
||
|
/* submodules: */ NULL,
|
||
|
/* data: */ NULL,
|
||
|
/* init: */ init_guile,
|
||
|
/* done: */ NULL
|
||
|
);
|