File: headers.h

package info (click to toggle)
alpine 2.11%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,876 kB
  • ctags: 26,747
  • sloc: ansic: 316,152; tcl: 26,277; sh: 11,228; makefile: 1,885; perl: 189; xml: 93; exp: 69; csh: 48; sed: 16
file content (68 lines) | stat: -rw-r--r-- 1,678 bytes parent folder | download
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
63
64
65
66
67
68
/*
 * $Id: headers.h 764 2007-10-23 23:44:49Z hubert@u.washington.edu $
 *
 * ========================================================================
 * Copyright 2006-2007 University of Washington
 * Copyright 2013 Eduardo Chappa
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * ========================================================================
 * 
 *
 *
 *     headers.h
 *
 *  The include file to always include that includes a few other things
 *    -  includes the most general system files and other pine include files
 *    -  declares the global variables
 */
         

#ifndef _PICO_HEADERS_INCLUDED
#define _PICO_HEADERS_INCLUDED


#include <system.h>
#include <general.h>

/*----------------------------------------------------------------------
           Include files
 
 ----*/

#ifdef _WINDOWS
#include "osdep/msmenu.h"
#include "osdep/mswin.h"
#endif /* _WINDOWS */
#include "estruct.h"
#include "mode.h"
#include "pico.h"
#include "keydefs.h"
#include "edef.h"
#include "efunc.h"
#include "utf8stub.h"

/* include osdep proto's defn's */
#include "osdep/altedit.h"
#include "osdep/chkpoint.h"
#include "osdep/color.h"
#include "osdep/filesys.h"
#include "osdep/getkey.h"
#include "osdep/mouse.h"
#include "osdep/newmail.h"
#include "osdep/popen.h"
#include "osdep/raw.h"
#include "osdep/read.h"
#include "osdep/shell.h"
#include "osdep/signals.h"
#include "osdep/spell.h"
#include "osdep/terminal.h"
#include "osdep/tty.h"


#endif /* _PICO_HEADERS_INCLUDED */