comparison src/lib-imap/imap-bodystructure.h @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents f57c52738f90
children efca64f75e62
comparison
equal deleted inserted replaced
902:5043e48c022f 903:fd8888f6f037
1 #ifndef __IMAP_BODYSTRUCTURE_H 1 #ifndef __IMAP_BODYSTRUCTURE_H
2 #define __IMAP_BODYSTRUCTURE_H 2 #define __IMAP_BODYSTRUCTURE_H
3 3
4 struct message_part;
5
4 /* If *part is non-NULL, it's used as base for building the body structure. 6 /* If *part is non-NULL, it's used as base for building the body structure.
5 Otherwise it's set to the root MessagePart and parsed. */ 7 Otherwise it's set to the root message_part and parsed. */
6 const char *imap_part_get_bodystructure(Pool pool, MessagePart **part, 8 const char *imap_part_get_bodystructure(pool_t pool, struct message_part **part,
7 IStream *input, int extended); 9 struct istream *input, int extended);
8 10
9 /* Return BODY part from BODYSTRUCTURE */ 11 /* Return BODY part from BODYSTRUCTURE */
10 const char *imap_body_parse_from_bodystructure(const char *bodystructure); 12 const char *imap_body_parse_from_bodystructure(const char *bodystructure);
11 13
12 #endif 14 #endif