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

Definition of the Mutt Module. More...

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

Go to the source code of this file.

Variables

const struct Module ModuleMutt
 Module for the Mutt library.
 

Detailed Description

Definition of the Mutt 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

◆ ModuleMutt

const struct Module ModuleMutt
Initial value:
= {
MODULE_ID_MUTT, "mutt",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
}
@ MODULE_ID_MUTT
ModuleMutt, Mutt
Definition module_api.h:79

Module for the Mutt library.

Definition at line 36 of file module.c.

36 {
37 MODULE_ID_MUTT, "mutt",
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};