NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_HISTORY_FUNCTIONS_H
24#define MUTT_HISTORY_FUNCTIONS_H
25
26#include <stdbool.h>
27#include <stdio.h>
28
29struct MuttWindow;
30
35{
36 bool done;
37 bool selection;
38 char *buf;
39 size_t buflen;
40 struct Menu *menu;
41 char **matches;
43};
44
55typedef int (*history_function_t)(struct HistoryData *pd, int op);
56
61{
62 int op;
64};
65
66int history_function_dispatcher(struct MuttWindow *win, int op);
67
68#endif /* MUTT_HISTORY_FUNCTIONS_H */
int history_function_dispatcher(struct MuttWindow *win, int op)
Perform a History function - Implements function_dispatcher_t -.
Definition: functions.c:75
int(* history_function_t)(struct HistoryData *pd, int op)
Definition: functions.h:55
Data to pass to the History Functions.
Definition: functions.h:35
size_t buflen
Length of the results buffer.
Definition: functions.h:39
struct Menu * menu
History Menu.
Definition: functions.h:40
char ** matches
History entries.
Definition: functions.h:41
bool done
Should we close the Dialog?
Definition: functions.h:36
char * buf
Buffer for the results.
Definition: functions.h:38
int match_count
Number of history entries.
Definition: functions.h:42
bool selection
Was a selection made?
Definition: functions.h:37
A NeoMutt function.
Definition: functions.h:61
history_function_t function
Function to call.
Definition: functions.h:63
int op
Op code, e.g. OP_GENERIC_SELECT_ENTRY.
Definition: functions.h:62
Definition: lib.h:79