NeoMutt  2023-05-17-56-ga67199
Teaching an old dog new tricks
DOXYGEN
mdata.h
Go to the documentation of this file.
1
23#ifndef MUTT_MAILDIR_MDATA_H
24#define MUTT_MAILDIR_MDATA_H
25
26#include <sys/types.h>
27#include <time.h>
28
29struct Mailbox;
30
35{
37 mode_t mh_umask;
38};
39
40void maildir_mdata_free(void **ptr);
43
44#endif /* MUTT_MAILDIR_MDATA_H */
void maildir_mdata_free(void **ptr)
Free the private Mailbox data - Implements Mailbox::mdata_free()
Definition: mdata.c:37
struct MaildirMboxData * maildir_mdata_get(struct Mailbox *m)
Get the private data for this Mailbox.
Definition: mdata.c:57
struct MaildirMboxData * maildir_mdata_new(void)
Create a new MaildirMboxData object.
Definition: mdata.c:46
A mailbox.
Definition: mailbox.h:79
Maildir-specific Mailbox data -.
Definition: mdata.h:35
mode_t mh_umask
umask to use when creating files
Definition: mdata.h:37
struct timespec mtime_cur
Timestamp of the 'cur' dir.
Definition: mdata.h:36
Time value with nanosecond precision.
Definition: file.h:50