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

Definition of the Editor 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 ModuleEditor
 Module for the Editor library.
 

Detailed Description

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

◆ ModuleEditor

const struct Module ModuleEditor
Initial value:
= {
"editor",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
}
@ MODULE_ID_EDITOR
ModuleEditor, Edit a string
Definition module_api.h:63

Module for the Editor library.

Definition at line 36 of file module.c.

36 {
38 "editor",
39 NULL, // init
40 NULL, // config_define_types
41 NULL, // config_define_variables
42 NULL, // commands_register
43 NULL, // gui_init
44 NULL, // gui_cleanup
45 NULL, // cleanup
46};