1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/src/viewer/viewer.c
Witold Filipczyk 66305fcb50 [gettext] try system gettext. Refs #62
Now, only meson was changed.
-Dnls=true -Dgettext=true
2021-08-08 21:25:08 +02:00

33 lines
596 B
C

/* Viewer module */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "elinks.h"
#include "intl/libintl.h"
#include "main/module.h"
#include "viewer/text/marks.h"
#include "viewer/text/search.h"
#include "viewer/timer.h"
static struct module *viewer_submodules[] = {
&search_history_module,
&timer_module,
#ifdef CONFIG_MARKS
&viewer_marks_module,
#endif
NULL
};
struct module viewer_module = struct_module(
/* name: */ N_("Viewer"),
/* options: */ NULL,
/* hooks: */ NULL,
/* submodules: */ viewer_submodules,
/* data: */ NULL,
/* init: */ NULL,
/* done: */ NULL
);