summaryrefslogtreecommitdiff
path: root/pico/headers.h
diff options
context:
space:
mode:
authorEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
committerEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
commit094ca96844842928810f14844413109fc6cdd890 (patch)
treee60efbb980f38ba9308ccb4fb2b77b87bbc115f3 /pico/headers.h
downloadalpine-094ca96844842928810f14844413109fc6cdd890.tar.xz
Initial Alpine Version
Diffstat (limited to 'pico/headers.h')
-rw-r--r--pico/headers.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/pico/headers.h b/pico/headers.h
new file mode 100644
index 00000000..5c6e8cab
--- /dev/null
+++ b/pico/headers.h
@@ -0,0 +1,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 */