NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_PATTERN_FUNCTIONS_H
24#define MUTT_PATTERN_FUNCTIONS_H
25
26#include "pattern_data.h"
27
28struct MuttWindow;
29
40typedef int (*pattern_function_t)(struct PatternData *pd, int op);
41
50
51int pattern_function_dispatcher(struct MuttWindow *win, int op);
52
53#endif /* MUTT_PATTERN_FUNCTIONS_H */
int pattern_function_dispatcher(struct MuttWindow *win, int op)
Perform a Pattern function - Implements function_dispatcher_t -.
Definition functions.c:81
int(* pattern_function_t)(struct PatternData *pd, int op)
Definition functions.h:40
Private Pattern Data.
Data to pass to the Pattern Functions.
A NeoMutt function.
Definition functions.h:46
int op
Op code, e.g. OP_GENERIC_SELECT_ENTRY.
Definition functions.h:47
pattern_function_t function
Function to call.
Definition functions.h:48