r13658: More moving around of files:
[samba.git] / source4 / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/CIFS implementation.
5    Machine customisation and include handling
6    Copyright (C) Andrew Tridgell 1994-1998
7    Copyright (C) 2002 by Martin Pool <mbp@samba.org>
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #endif
27
28 #include "local.h"
29
30 #ifdef __GNUC__
31 /** gcc attribute used on function parameters so that it does not emit
32  * warnings about them being unused. **/
33 #  define UNUSED(param) param __attribute__ ((unused))
34 #else
35 #  define UNUSED(param) param
36 /** Feel free to add definitions for other compilers here. */
37 #endif
38
39 #ifndef PRINTF_ATTRIBUTE
40 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
41 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
42  * the parameter containing the format, and a2 the index of the first
43  * argument. Note that some gcc 2.x versions don't handle this
44  * properly **/
45 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
46 #else
47 #define PRINTF_ATTRIBUTE(a1, a2)
48 #endif
49 #endif
50
51 #include <sys/types.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <stddef.h>
55 #include <sys/time.h>
56
57 #ifdef HAVE_STDINT_H
58 #include <stdint.h>
59 #endif
60
61 #ifdef HAVE_INTTYPES_H
62 #include <inttypes.h>
63 #endif
64
65 #ifdef HAVE_STRING_H
66 #include <string.h>
67 #endif
68
69 #include <signal.h>
70 #include <errno.h>
71
72 #ifdef HAVE_STDARG_H
73 #include <stdarg.h>
74 #else
75 #include <varargs.h>
76 #endif
77
78 /* tell ldb we have the internal ldap code */
79 #define HAVE_ILDAP 1
80
81 /*
82   we use struct ipv4_addr to avoid having to include all the
83   system networking headers everywhere
84 */
85 struct ipv4_addr {
86         uint32_t addr;
87 };
88
89 /* protocol types. It assumes that higher protocols include lower protocols
90    as subsets. FIXME: Move to one of the smb-specific headers */
91 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
92
93 /* passed to br lock code. FIXME: Move to one of the smb-specific headers */
94 enum brl_type {READ_LOCK, WRITE_LOCK, PENDING_READ_LOCK, PENDING_WRITE_LOCK};
95
96 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
97 #include "lib/replace/replace.h"
98
99 /* Lists, trees, caching, database... */
100 #include "nt_status.h"
101 #include "talloc/talloc.h"
102 #include "core.h"
103 #include "charset/charset.h"
104 #include "structs.h"
105 #include "util/util.h"
106 #include "libcli/util/nterr.h"
107 #include "libcli/util/doserr.h"
108 #include "librpc/ndr/libndr.h"
109 #include "librpc/gen_ndr/dcerpc.h"
110 #include "librpc/ndr/ndr_orpc.h"
111 #include "librpc/gen_ndr/orpc.h"
112 #include "librpc/rpc/dcerpc.h"
113 #include "libcli/raw/trans2.h"
114 #include "libcli/raw/interfaces.h"
115 #include "auth/credentials/credentials.h"
116 #include "libcli/nbt/libnbt.h"
117
118 #undef _PRINTF_ATTRIBUTE
119 #define _PRINTF_ATTRIBUTE(a1, a2)
120
121 /***** automatically generated prototypes *****/
122 #include "include/proto.h"
123
124 /* String routines */
125
126 #include "util/safe_string.h"
127
128 #ifndef HAVE_PIPE
129 #define SYNC_DNS 1
130 #endif
131
132 extern int DEBUGLEVEL;
133
134 #if defined(VALGRIND)
135 #define strlen(x) valgrind_strlen(x)
136 #endif
137
138 #if 0
139 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
140 #define TALLOC_ABORT(reason) smb_panic(reason)
141 #endif
142
143 /*
144   this is a warning hack. The idea is to use this everywhere that we
145   get the "discarding const" warning from gcc. That doesn't actually
146   fix the problem of course, but it means that when we do get to
147   cleaning them up we can do it by searching the code for
148   discard_const.
149
150   It also means that other error types aren't as swamped by the noise
151   of hundreds of const warnings, so we are more likely to notice when
152   we get new errors.
153
154   Please only add more uses of this macro when you find it
155   _really_ hard to fix const warnings. Our aim is to eventually use
156   this function in only a very few places.
157
158   Also, please call this via the discard_const_p() macro interface, as that
159   makes the return type safe.
160 */
161 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
162 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
163
164 #ifndef _PUBLIC_
165 #define _PUBLIC_
166 #endif
167
168 #endif /* _INCLUDES_H */