1 /* Guile module */
2 
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
6 
7 #include "elinks.h"
8 
9 #include "main/module.h"
10 #include "scripting/guile/core.h"
11 #include "scripting/guile/hooks.h"
12 
13 
14 struct module guile_scripting_module = struct_module(
15 	/* name: */		"Guile",
16 	/* options: */		NULL,
17 	/* events: */		guile_scripting_hooks,
18 	/* submodules: */	NULL,
19 	/* data: */		NULL,
20 	/* init: */		init_guile,
21 	/* done: */		NULL
22 );
23