⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mx.h

📁 mutt-1.5.12 源代码。linux 下邮件接受的工具。
💻 H
字号:
/* * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org> * Copyright (C) 1999-2002 Thomas Roessler <roessler@does-not-exist.org> * *     This program is free software; you can redistribute it and/or modify *     it under the terms of the GNU General Public License as published by *     the Free Software Foundation; either version 2 of the License, or *     (at your option) any later version. *  *     This program is distributed in the hope that it will be useful, *     but WITHOUT ANY WARRANTY; without even the implied warranty of *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *     GNU General Public License for more details. *  *     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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. */ /* * This header file contains prototypes for internal functions used by the * generic mailbox api.  None of these functions should be called directly. */#ifndef _MX_H#define _MX_H#include "mailbox.h"/* supported mailbox formats */enum{  M_MBOX = 1,  M_MMDF,  M_MH,  M_MAILDIR#ifdef USE_IMAP  , M_IMAP#endif#ifdef USE_POP  , M_POP#endif};WHERE short DefaultMagic INITVAL (M_MBOX);#define MMDF_SEP "\001\001\001\001\n"#define MAXLOCKATTEMPT 5int mbox_sync_mailbox (CONTEXT *, int *);int mbox_open_mailbox (CONTEXT *);int mbox_check_mailbox (CONTEXT *, int *);int mbox_close_mailbox (CONTEXT *);int mbox_lock_mailbox (CONTEXT *, int, int);int mbox_parse_mailbox (CONTEXT *);int mmdf_parse_mailbox (CONTEXT *);void mbox_unlock_mailbox (CONTEXT *);int mbox_check_empty (const char *);int mh_read_dir (CONTEXT *, const char *);int mh_sync_mailbox (CONTEXT *, int *);int mh_check_mailbox (CONTEXT *, int *);int mh_buffy (const char *);int mh_check_empty (const char *);int maildir_read_dir (CONTEXT *);int maildir_check_mailbox (CONTEXT *, int *);int maildir_check_empty (const char *);int maildir_commit_message (CONTEXT *, MESSAGE *, HEADER *);int mh_commit_message (CONTEXT *, MESSAGE *, HEADER *);int maildir_open_new_message (MESSAGE *, CONTEXT *, HEADER *);int mh_open_new_message (MESSAGE *, CONTEXT *, HEADER *);FILE *maildir_open_find_message (const char *, const char *);int mbox_strict_cmp_headers (const HEADER *, const HEADER *);int mutt_reopen_mailbox (CONTEXT *, int *);void mx_alloc_memory (CONTEXT *);void mx_update_context (CONTEXT *, int);void mx_update_tables (CONTEXT *, int);int mx_lock_file (const char *, int, int, int, int);int mx_unlock_file (const char *path, int fd, int dot);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -