NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
edata.h
Go to the documentation of this file.
1
23#ifndef MUTT_POP_EDATA_H
24#define MUTT_POP_EDATA_H
25
26struct Email;
27
32{
33 const char *uid;
34 int refno;
35};
36
37void pop_edata_free(void **ptr);
38struct PopEmailData *pop_edata_get (struct Email *e);
39struct PopEmailData *pop_edata_new (const char *uid);
40
41#endif /* MUTT_POP_EDATA_H */
void pop_edata_free(void **ptr)
Free the private Email data - Implements Email::edata_free() -.
Definition: edata.c:41
struct PopEmailData * pop_edata_new(const char *uid)
Create a new PopEmailData for an email.
Definition: edata.c:56
struct PopEmailData * pop_edata_get(struct Email *e)
Get the private data for this Email.
Definition: edata.c:68
The envelope/body of an email.
Definition: email.h:39
POP-specific Email data -.
Definition: edata.h:32
int refno
Message number on server.
Definition: edata.h:34
const char * uid
UID of email.
Definition: edata.h:33