NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private_data.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_INDEX_PRIVATE_DATA_H
24#define MUTT_INDEX_PRIVATE_DATA_H
25
26#include <stdbool.h>
27
28struct IndexSharedData;
29struct MuttWindow;
30
44
45void index_private_data_free(struct MuttWindow *win, void **ptr);
47
48#endif /* MUTT_INDEX_PRIVATE_DATA_H */
void index_private_data_free(struct MuttWindow *win, void **ptr)
Free Private Index Data - Implements MuttWindow::wdata_free() -.
struct IndexPrivateData * index_private_data_new(struct IndexSharedData *shared)
Create new Index Data.
Private state data for the Index.
struct MuttWindow * win_index
Window for the Index.
struct IndexSharedData * shared
Shared Index data.
bool tag_prefix
tag-prefix has been pressed
bool do_mailbox_notify
Do we need to notify the user of new mail?
struct Menu * menu
Menu controlling the index.
int oldcount
Old count of mails in the mailbox.
Data shared between Index, Pager and Sidebar.
Definition shared_data.h:37
Definition lib.h:79