Add support for tab-completion when selecting by rule
[alpine.git] / alpine / headers.h
blob65abd66eed1a5617d63f1591b05655d34d81a71f
1 /*
2 * $Id: headers.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2022 Eduardo Chappa
6 * Copyright 2006 University of Washington
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 * ========================================================================
17 #ifndef ALPINE_HEADERS_INCLUDED
18 #define ALPINE_HEADERS_INCLUDED
21 /*----------------------------------------------------------------------
22 Include files
23 ----*/
25 #include "../pith/headers.h"
27 #include "../pico/headers.h"
31 * Redefinition to help pico storage object use more clear
33 #define PicoText ExternalText
36 #if !defined(DOS) && !defined(OS2) && !defined(LEAVEOUTFIFO)
38 * If LEAVEOUTFIFO is set in os.h, then we leave it out.
39 * If it isn't set, we still might leave it out. We'll decide
40 * based on whether or not O_NONBLOCK is defined or not.
41 * It's just a guess. Safer would be to change the polarity of the
42 * test and define something like INCLUDEFIFO instead of LEAVEOUTFIFO
43 * and only define it where we know. Since we don't really know
44 * we'd rather run the risk of being wrong and finding out that
45 * way instead of just having people not know about it.
47 #if !defined(O_NONBLOCK)
48 #define LEAVEOUTFIFO 1
49 #endif
50 #endif
52 /* include osdep protos and def'ns */
53 #include "osdep/debuging.h"
54 #include "osdep/execview.h"
55 #include "osdep/fltrname.h"
56 #include "osdep/jobcntrl.h"
57 #include "osdep/print.h"
58 #include "osdep/termin.gen.h"
59 #include "osdep/termout.gen.h"
60 #ifndef _WINDOWS
61 #include "osdep/termin.unx.h"
62 #include "osdep/termout.unx.h"
63 #else /* _WINDOWS */
64 #include "osdep/termin.wnt.h"
65 #include "osdep/termout.wnt.h"
66 #endif /* _WINDOWS */
69 #endif /* ALPINE_HEADERS_INCLUDED */