X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fimap.h;h=77c07f54cc78060af9c6cfe7424fa84757900971;hp=9ac7a95e67da606842655c8ef046f59699efeefa;hb=df70e07e24add1869bcc9b7af2277d9d0c09a281;hpb=31edbe030ac69952aa535730427246b5e9a1603c diff --git a/imap/imap.h b/imap/imap.h index 9ac7a95..77c07f5 100644 --- a/imap/imap.h +++ b/imap/imap.h @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - */ + */ #ifndef _IMAP_H #define _IMAP_H 1 @@ -25,45 +25,44 @@ #include "mailbox.h" /* -- data structures -- */ -typedef struct -{ +typedef struct { ACCOUNT account; - char* mbox; + char *mbox; } IMAP_MBOX; /* imap.c */ -int imap_access (const char*, int); -int imap_check_mailbox (CONTEXT *ctx, int *index_hint, int force); -int imap_delete_mailbox (CONTEXT* idata, IMAP_MBOX mx); -int imap_open_mailbox (CONTEXT *ctx); -int imap_open_mailbox_append (CONTEXT *ctx); -int imap_sync_mailbox (CONTEXT *ctx, int expunge, int *index_hint); -void imap_close_mailbox (CONTEXT *ctx); +int imap_access (const char *, int); +int imap_check_mailbox (CONTEXT * ctx, int *index_hint, int force); +int imap_delete_mailbox (CONTEXT * idata, IMAP_MBOX mx); +int imap_open_mailbox (CONTEXT * ctx); +int imap_open_mailbox_append (CONTEXT * ctx); +int imap_sync_mailbox (CONTEXT * ctx, int expunge, int *index_hint); +void imap_close_mailbox (CONTEXT * ctx); int imap_buffy_check (char *path); int imap_mailbox_check (char *path, int new); int imap_subscribe (char *path, int subscribe); -int imap_complete (char* dest, size_t dlen, char* path); +int imap_complete (char *dest, size_t dlen, char *path); -void imap_allow_reopen (CONTEXT *ctx); -void imap_disallow_reopen (CONTEXT *ctx); +void imap_allow_reopen (CONTEXT * ctx); +void imap_disallow_reopen (CONTEXT * ctx); /* browse.c */ -int imap_browse (char* path, struct browser_state* state); -int imap_mailbox_create (const char* folder); -int imap_mailbox_rename (const char* mailbox); +int imap_browse (char *path, struct browser_state *state); +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); +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); /* util.c */ -int imap_expand_path (char* path, size_t len); -int imap_parse_path (const char* path, IMAP_MBOX* mx); -void imap_pretty_mailbox (char* path); +int imap_expand_path (char *path, size_t len); +int imap_parse_path (const char *path, IMAP_MBOX * mx); +void imap_pretty_mailbox (char *path); int imap_wait_keepalive (pid_t pid); void imap_keepalive (void);