NeoMutt  2024-11-14-34-g5aaf0d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
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
46{
47 int op;
49};
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.
Definition: pattern_data.h:47
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