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 "config/lib.h"
33#include "core/lib.h"
34
35extern struct ConfigDef AutocryptVars[];
36
40static bool autocrypt_config_define_variables(struct NeoMutt *n, struct ConfigSet *cs)
41{
42 bool rc = false;
43
44#if defined(USE_AUTOCRYPT)
46#endif
47
48 return rc;
49}
50
54const struct Module ModuleAutocrypt = {
56 "autocrypt",
57 NULL, // init
58 NULL, // config_define_types
60 NULL, // commands_register
61 NULL, // gui_init
62 NULL, // gui_cleanup
63 NULL, // cleanup
64};
struct ConfigDef AutocryptVars[]
Config definitions for the autocrypt library.
Definition config.c:64
static bool autocrypt_config_define_variables(struct NeoMutt *n, struct ConfigSet *cs)
Define the Config Variables - Implements Module::config_define_variables()
Definition module.c:40
const struct Module ModuleAutocrypt
Module for the Autocrypt library.
Definition module.c:54
Convenience wrapper for the config headers.
bool cs_register_variables(const struct ConfigSet *cs, struct ConfigDef vars[])
Register a set of config items.
Definition set.c:290
Convenience wrapper for the core headers.
@ MODULE_ID_AUTOCRYPT
ModuleAutocrypt, Autocrypt
Definition module_api.h:50
Container for lots of config items.
Definition set.h:250
Container for Accounts, Notifications.
Definition neomutt.h:41