1 /**
2  * @file
3  * Definitions of user functions
4  *
5  * @authors
6  * Copyright (C) 1996-2000,2002 Michael R. Elkins <me@mutt.org>
7  *
8  * @copyright
9  * This program is free software: you can redistribute it and/or modify it under
10  * the terms of the GNU General Public License as published by the Free Software
11  * Foundation, either version 2 of the License, or (at your option) any later
12  * version.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License along with
20  * this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22 
23 #ifndef MUTT_FUNCTIONS_H
24 #define MUTT_FUNCTIONS_H
25 
26 #include "config.h"
27 #include "keymap.h"
28 
29 extern struct Binding OpAlias[];
30 extern struct Binding OpAttach[];
31 #ifdef USE_AUTOCRYPT
32 extern struct Binding OpAutocryptAcct[];
33 #endif
34 extern struct Binding OpBrowser[];
35 extern struct Binding OpCompose[];
36 extern struct Binding OpEditor[];
37 extern struct Binding OpGeneric[];
38 extern struct Binding OpMain[];
39 #ifdef MIXMASTER
40 extern struct Binding OpMix[];
41 #endif
42 extern struct Binding OpPager[];
43 extern struct Binding OpPgp[];
44 extern struct Binding OpPost[];
45 extern struct Binding OpQuery[];
46 extern struct Binding OpSmime[];
47 
48 #endif /* MUTT_FUNCTIONS_H */
49