NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
autocrypt_data.h
Go to the documentation of this file.
1
23#ifndef MUTT_AUTOCRYPT_AUTOCRYPT_DATA_H
24#define MUTT_AUTOCRYPT_AUTOCRYPT_DATA_H
25
26#include <stdbool.h>
27#include "private.h"
28
29struct Menu;
30
35{
36 bool done;
37 struct Menu *menu;
38 struct AccountEntryArray entries;
39};
40
42void autocrypt_data_free(struct Menu *menu, void **ptr);
43
44void account_entry_array_clear(struct AccountEntryArray *entries);
45
46#endif /* MUTT_AUTOCRYPT_AUTOCRYPT_DATA_H */
struct AutocryptData * autocrypt_data_new(void)
Create new Autocrypt Data.
void account_entry_array_clear(struct AccountEntryArray *entries)
Clear an AccountEntry array.
void autocrypt_data_free(struct Menu *menu, void **ptr)
Free Autocrypt Data - Implements Menu::mdata_free() -.
GUI display the mailboxes in a side panel.
Data to pass to the Autocrypt Functions.
bool done
Should we close the Dialog?
struct Menu * menu
Autocrypt Menu.
struct AccountEntryArray entries
Account Entries.
Definition: lib.h:79