NeoMutt  2024-11-14-34-g5aaf0d
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 "mutt/lib.h"
28#include "private.h"
29
30struct Menu;
31
36{
37 bool done;
38 struct Menu *menu;
39 struct AccountEntryArray entries;
40};
41
43void autocrypt_data_free(struct Menu *menu, void **ptr);
44
45void account_entry_array_clear(struct AccountEntryArray *entries);
46
47#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() -.
Convenience wrapper for the library headers.
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