NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module_data.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_HOOKS_MODULE_DATA_H
24#define MUTT_HOOKS_MODULE_DATA_H
25
26#include "mutt/lib.h"
27#include "hook.h"
28
33{
34 struct Notify *notify;
35 struct HookList hooks;
38};
39
40#endif /* MUTT_HOOKS_MODULE_DATA_H */
User-defined Hooks.
Convenience wrapper for the library headers.
A Hash Table.
Definition hash.h:99
Hooks private Module data.
Definition module_data.h:33
struct HashTable * idx_fmt_hooks
All Index Format hooks.
Definition module_data.h:36
struct HookList hooks
All simple hooks, e.g. CMD_FOLDER_HOOK.
Definition module_data.h:35
int current_hook_id
The ID of the Hook currently being executed.
Definition module_data.h:37
struct Notify * notify
Notifications.
Definition module_data.h:34
Notification API.
Definition notify.c:53