forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.h
62 lines (56 loc) · 3.04 KB
/
init.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* @file
* Config/command parsing
*
* @authors
* Copyright (C) 1996-2002,2007,2010,2012-2013,2016 Michael R. Elkins <me@mutt.org>
* Copyright (C) 2004 g10 Code GmbH
*
* @copyright
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef MUTT_INIT_H
#define MUTT_INIT_H
#include "config.h"
#include <stdint.h>
#include "config/lib.h"
#include "hook.h"
#include "mutt_commands.h"
#include "mutt.h"
struct Buffer;
struct ListHead;
int charset_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
#ifdef USE_HCACHE
int hcache_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
#endif
int multipart_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
int pager_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
int reply_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
int wrapheaders_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err);
struct ConfigSet * init_config (size_t size);
int mutt_command_complete (char *buf, size_t buflen, int pos, int numtabs);
const struct Command *mutt_command_get (const char *s);
void mutt_commands_apply (void *data, void (*application)(void *, const struct Command *));
int mutt_extract_token (struct Buffer *dest, struct Buffer *tok, TokenFlags flags);
HookFlags mutt_get_hook_type (const char *name);
int mutt_init (struct ConfigSet *cs, bool skip_sys_rc, struct ListHead *commands);
int mutt_label_complete (char *buf, size_t buflen, int numtabs);
bool mutt_nm_query_complete (char *buf, size_t buflen, int pos, int numtabs);
bool mutt_nm_tag_complete (char *buf, size_t buflen, int numtabs);
void mutt_opts_free (void);
enum CommandResult mutt_parse_rc_line (/* const */ char *line, struct Buffer *token, struct Buffer *err);
int mutt_query_variables (struct ListHead *queries);
int mutt_var_value_complete(char *buf, size_t buflen, int pos);
enum QuadOption query_quadoption (enum QuadOption opt, const char *prompt);
#endif /* MUTT_INIT_H */