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 <stdbool.h>
31#include <stddef.h>
32#include "core/lib.h"
33
34extern const struct Command CompCommands[];
35
39static bool compmbox_commands_register(struct NeoMutt *n, struct CommandArray *ca)
40{
42}
43
47const struct Module ModuleCompmbox = {
49 "compmbox",
50 NULL, // init
51 NULL, // config_define_types
52 NULL, // config_define_variables
54 NULL, // gui_init
55 NULL, // gui_cleanup
56 NULL, // cleanup
57};
const struct Command CompCommands[]
Compression Commands.
Definition compress.c:62
static bool compmbox_commands_register(struct NeoMutt *n, struct CommandArray *ca)
Register NeoMutt Commands - Implements Module::commands_register()
Definition module.c:39
const struct Module ModuleCompmbox
Module for the Compmbox library.
Definition module.c:47
bool commands_register(struct CommandArray *ca, const struct Command *cmds)
Add commands to Commands array.
Definition command.c:51
Convenience wrapper for the core headers.
@ MODULE_ID_COMPMBOX
ModuleCompmbox, Compressed Mailbox
Definition module_api.h:56
Container for Accounts, Notifications.
Definition neomutt.h:41