NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module.c File Reference

Definition of the Core Module. More...

#include "config.h"
#include <stddef.h>
#include "module_api.h"
+ Include dependency graph for module.c:

Go to the source code of this file.

Variables

const struct Module ModuleCore
 Module for the Core library.
 

Detailed Description

Definition of the Core Module.

Authors
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file module.c.

Variable Documentation

◆ ModuleCore

const struct Module ModuleCore
Initial value:
= {
MODULE_ID_CORE, "core",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
}
@ MODULE_ID_CORE
ModuleCore, Core NeoMutt objects
Definition module_api.h:62

Module for the Core library.

Definition at line 36 of file module.c.

36 {
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};