mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-04 04:14:18 -04:00
66305fcb50
Now, only meson was changed. -Dnls=true -Dgettext=true
33 lines
596 B
C
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
|
|
);
|