* Deactivate some color code from Pico (as standalone editor) until
[alpine.git] / pico / headers.h
blob9b9e58714152621f7e1507487e3e61f31ed42d30
1 /*
2 * $Id: headers.h 764 2007-10-23 23:44:49Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006-2007 University of Washington
6 * Copyright 2013-2017 Eduardo Chappa
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
18 * headers.h
20 * The include file to always include that includes a few other things
21 * - includes the most general system files and other pine include files
22 * - declares the global variables
26 #ifndef _PICO_HEADERS_INCLUDED
27 #define _PICO_HEADERS_INCLUDED
30 #include <system.h>
31 #include <general.h>
33 /*----------------------------------------------------------------------
34 Include files
36 ----*/
38 #ifdef _WINDOWS
39 #include "osdep/msmenu.h"
40 #include "osdep/mswin.h"
41 #endif /* _WINDOWS */
42 #include "estruct.h"
43 #include "mode.h"
44 #include "pico.h"
45 #include "keydefs.h"
46 #include "edef.h"
47 #include "efunc.h"
48 #include "utf8stub.h"
50 /* include osdep proto's defn's */
51 #include "osdep/altedit.h"
52 #include "osdep/chkpoint.h"
53 #include "osdep/color.h"
54 #include "osdep/filesys.h"
55 #include "osdep/getkey.h"
56 #include "osdep/mouse.h"
57 #include "osdep/newmail.h"
58 #include "osdep/popen.h"
59 #include "osdep/raw.h"
60 #include "osdep/read.h"
61 #include "osdep/shell.h"
62 #include "osdep/signals.h"
63 #include "osdep/spell.h"
64 #include "osdep/terminal.h"
65 #include "osdep/tty.h"
68 #endif /* _PICO_HEADERS_INCLUDED */