30 instead of 10. Python tutorial looks better.
[elinks.git] / src / viewer / viewer.c
blobfccd21e61faf288dd92890f415d13940ee3e8495
1 /* Viewer module */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include "elinks.h"
9 #include "intl/gettext/libintl.h"
10 #include "main/module.h"
11 #include "viewer/text/marks.h"
12 #include "viewer/text/search.h"
13 #include "viewer/timer.h"
15 static struct module *viewer_submodules[] = {
16 &search_history_module,
17 &timer_module,
18 #ifdef CONFIG_MARKS
19 &viewer_marks_module,
20 #endif
21 NULL
24 struct module viewer_module = struct_module(
25 /* name: */ N_("Viewer"),
26 /* options: */ NULL,
27 /* hooks: */ NULL,
28 /* submodules: */ viewer_submodules,
29 /* data: */ NULL,
30 /* init: */ NULL,
31 /* done: */ NULL