NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h
Go to the documentation of this file.
1
24#ifndef MUTT_INDEX_PRIVATE_H
25#define MUTT_INDEX_PRIVATE_H
26
27#include <stdbool.h>
28
29struct IndexPrivateData;
30struct IndexSharedData;
31struct ConfigSubset;
32
33struct MuttWindow *index_window_new(struct IndexPrivateData *priv);
34struct MuttWindow *ipanel_new(bool status_on_top, struct IndexSharedData *shared);
35int index_adjust_sort_threads(const struct ConfigSubset *sub);
36
37#endif /* MUTT_INDEX_PRIVATE_H */
int index_adjust_sort_threads(const struct ConfigSubset *sub)
Adjust use_threads/sort/sort_aux.
Definition: index.c:184
struct MuttWindow * ipanel_new(bool status_on_top, struct IndexSharedData *shared)
Create the Windows for the Index panel.
Definition: ipanel.c:121
struct MuttWindow * index_window_new(struct IndexPrivateData *priv)
Create a new Index Window (list of Emails)
Definition: index.c:651
A set of inherited config items.
Definition: subset.h:47
Private state data for the Index.
Definition: private_data.h:35
Data shared between Index, Pager and Sidebar.
Definition: shared_data.h:37