r12494: Support loading modules from .so files for most subsystems.
[sfrench/samba-autobuild/.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 #include <sys/types.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <stddef.h>
43 #include <sys/time.h>
44
45 #ifdef HAVE_STDINT_H
46 #include <stdint.h>
47 #endif
48
49 #ifdef HAVE_INTTYPES_H
50 #include <inttypes.h>
51 #endif
52
53 #ifdef HAVE_STRING_H
54 #include <string.h>
55 #endif
56
57 #include <signal.h>
58 #include <errno.h>
59
60 #ifdef HAVE_STDARG_H
61 #include <stdarg.h>
62 #else
63 #include <varargs.h>
64 #endif
65
66 /* tell ldb we have the internal ldap code */
67 #define HAVE_ILDAP 1
68
69 /*
70  * Define VOLATILE if needed.
71  */
72
73 #define False (0)
74 #define True (1)
75 #define Auto (2)
76
77 typedef int BOOL;
78
79 /*
80   we use struct ipv4_addr to avoid having to include all the
81   system networking headers everywhere
82 */
83 struct ipv4_addr {
84         uint32_t addr;
85 };
86
87
88 #include "lib/replace/replace.h"
89
90 /* Lists, trees, caching, database... */
91 #include "xfile.h"
92 #include "lib/talloc/talloc.h"
93 #include "nt_status.h"
94 #include "structs.h"
95 #include "trans2.h"
96 #include "nterr.h"
97 #include "charset.h"
98 #include "debug.h"
99 #include "doserr.h"
100 #include "enums.h"
101 #include "smb_macros.h"
102 #include "smb.h"
103 #include "byteorder.h"
104 #include "lib/tdr/tdr.h"
105 #include "librpc/ndr/libndr.h"
106 #include "librpc/gen_ndr/misc.h"
107 #include "librpc/gen_ndr/dcerpc.h"
108 #include "librpc/ndr/ndr_orpc.h"
109 #include "librpc/gen_ndr/orpc.h"
110 #include "librpc/rpc/dcerpc.h"
111 #include "smb_interfaces.h"
112 #include "ntvfs/ntvfs.h"
113 #include "cli_context.h"
114 #include "auth/credentials/credentials.h"
115
116 #ifndef NO_CONFIG_H
117 #include "smb_build.h"
118 #endif
119
120 /***** automatically generated prototypes *****/
121 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
122 #include "include/proto.h"
123 #undef _PRINTF_ATTRIBUTE
124 #define _PRINTF_ATTRIBUTE(a1, a2)
125
126 /* String routines */
127
128 #include "safe_string.h"
129
130 #ifndef HAVE_PIPE
131 #define SYNC_DNS 1
132 #endif
133
134 extern int DEBUGLEVEL;
135
136 #if defined(VALGRIND)
137 #define strlen(x) valgrind_strlen(x)
138 #endif
139
140 #if 0
141 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
142 #define TALLOC_ABORT(reason) smb_panic(reason)
143 #endif
144
145 /*
146   this is a warning hack. The idea is to use this everywhere that we
147   get the "discarding const" warning from gcc. That doesn't actually
148   fix the problem of course, but it means that when we do get to
149   cleaning them up we can do it by searching the code for
150   discard_const.
151
152   It also means that other error types aren't as swamped by the noise
153   of hundreds of const warnings, so we are more likely to notice when
154   we get new errors.
155
156   Please only add more uses of this macro when you find it
157   _really_ hard to fix const warnings. Our aim is to eventually use
158   this function in only a very few places.
159
160   Also, please call this via the discard_const_p() macro interface, as that
161   makes the return type safe.
162 */
163 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
164 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
165
166 #define _PUBLIC_
167
168 #endif /* _INCLUDES_H */