X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fmessages.h;h=7dd909c33668784a34af6e0cc2c2bb192f85a328;hb=22e4e5ffb65d6973b0a613d5b410f3a9dcf6a71c;hp=eb014f43852f55452d9afab34c491feccb266abf;hpb=aeade41982c6c9a3e745a3b3c8262a3ec6952670;p=citadel.git diff --git a/webcit/messages.h b/webcit/messages.h index eb014f438..7dd909c33 100644 --- a/webcit/messages.h +++ b/webcit/messages.h @@ -9,6 +9,8 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ +#ifndef MESSAGES_H +#define MESSAGES_H extern CtxType CTX_MAILSUM; extern CtxType CTX_MIME_ATACH; @@ -139,7 +141,8 @@ int read_message(StrBuf *Target, const char *tmpl, long tmpllen, long msgnum, const StrBuf *section, - const StrBuf **OutMime); + const StrBuf **OutMime, + WCTemplputParams *TP); int load_message(message_summary *Msg, StrBuf *FoundCharset, StrBuf **Error); @@ -293,3 +296,6 @@ void RegisterMimeRenderer(const char *HeaderName, long HdrNLen, * @param buf linebuffer used to buffer citserver replies */ int ReadOneMessageSummary(message_summary *Msg, StrBuf *FoundCharset, StrBuf *Buf); + + +#endif