NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
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{
36 struct timespec mtime;
38 mode_t umask;
39};
40
41void maildir_mdata_free(void **ptr);
44
45#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:60
struct MaildirMboxData * maildir_mdata_new(void)
Create a new MaildirMboxData object.
Definition: mdata.c:49
A mailbox.
Definition: mailbox.h:79
Maildir-specific Mailbox data -.
Definition: mdata.h:35
struct timespec mtime_cur
Timestamp of the 'cur' dir.
Definition: mdata.h:37
mode_t umask
umask to use when creating files
Definition: mdata.h:38
struct timespec mtime
Time Mailbox was last changed.
Definition: mdata.h:36
Time value with nanosecond precision.
Definition: file.h:51