NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module.c
Go to the documentation of this file.
1
22
28
29#include "config.h"
30#include <stddef.h>
31#include "module_api.h"
32
36const struct Module ModuleCore = {
37 MODULE_ID_CORE, "core",
38 NULL, // init
39 NULL, // config_define_types
40 NULL, // config_define_variables
41 NULL, // commands_register
42 NULL, // gui_init
43 NULL, // gui_cleanup
44 NULL, // cleanup
45};
const struct Module ModuleCore
Module for the Core library.
Definition module.c:36
Module API.
@ MODULE_ID_CORE
ModuleCore, Core NeoMutt objects
Definition module_api.h:62