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 CommandsCommands[];
35
39static bool commands_commands_register(struct NeoMutt *n, struct CommandArray *ca)
40{
42}
43
47const struct Module ModuleCommands = {
49 "commands",
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 CommandsCommands[]
General NeoMutt Commands.
Definition commands.c:45
const struct Module ModuleCommands
Module for the Commands library.
Definition module.c:47
static bool commands_commands_register(struct NeoMutt *n, struct CommandArray *ca)
Register NeoMutt Commands - Implements Module::commands_register()
Definition module.c:39
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_COMMANDS
ModuleCommands, NeoMutt Commands
Definition module_api.h:54
Container for Accounts, Notifications.
Definition neomutt.h:41