From 3bf22f6e86296fb9371bccae9147e7db4a224818 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Sat, 12 Jan 2008 15:23:24 +0100 Subject: [PATCH] imap_(append|fetch)_message are private to the imap module for real Signed-off-by: Pierre Habouzit --- imap/imap.h | 2 -- imap/message.h | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/imap/imap.h b/imap/imap.h index 29a2454..b92fb39 100644 --- a/imap/imap.h +++ b/imap/imap.h @@ -45,9 +45,7 @@ int imap_mailbox_create (const char *folder); int imap_mailbox_rename (const char *mailbox); /* message.c */ -int imap_append_message (CONTEXT * ctx, MESSAGE * msg); int imap_copy_messages (CONTEXT * ctx, HEADER * h, char *dest, int delete); -int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno); /* socket.c */ void imap_logout_all (void); diff --git a/imap/message.h b/imap/message.h index 5657deb..77e9464 100644 --- a/imap/message.h +++ b/imap/message.h @@ -39,4 +39,7 @@ typedef struct { /* -- macros -- */ #define HEADER_DATA(ph) ((IMAP_HEADER_DATA*) ((ph)->data)) +int imap_append_message (CONTEXT * ctx, MESSAGE * msg); +int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno); + #endif /* MESSAGE_H */ -- 2.20.1