r10525: change from AC_CHECK_TYPES() to AC_CHECK_TYPE() for intptr_t, so the
[Samba/aatanasov.git] / source / include / includes.h
blob78481ac6795ae8a3119fc4e69717aabcb1cf3125
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>
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.
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.
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.
24 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #include "smb_build.h"
27 #endif
29 #include "local.h"
31 #ifdef __GNUC__
32 /** gcc attribute used on function parameters so that it does not emit
33 * warnings about them being unused. **/
34 # define UNUSED(param) param __attribute__ ((unused))
35 #else
36 # define UNUSED(param) param
37 /** Feel free to add definitions for other compilers here. */
38 #endif
40 #include <sys/types.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stddef.h>
44 #include <sys/time.h>
46 #ifdef HAVE_STDINT_H
47 #include <stdint.h>
48 #endif
50 #ifdef HAVE_INTTYPES_H
51 #include <inttypes.h>
52 #endif
54 #ifdef HAVE_STRING_H
55 #include <string.h>
56 #endif
58 #include <signal.h>
59 #include <errno.h>
61 #ifdef HAVE_STDARG_H
62 #include <stdarg.h>
63 #else
64 #include <varargs.h>
65 #endif
67 /* tell ldb we have the internal ldap code */
68 #define HAVE_ILDAP 1
71 * Define VOLATILE if needed.
74 #define False (0)
75 #define True (1)
76 #define Auto (2)
78 typedef int BOOL;
81 we use struct ipv4_addr to avoid having to include all the
82 system networking headers everywhere
84 struct ipv4_addr {
85 uint32_t addr;
89 #include "lib/replace/replace.h"
91 /* Lists, trees, caching, database... */
92 #include "xfile.h"
93 #include "lib/talloc/talloc.h"
94 #include "nt_status.h"
95 #include "structs.h"
96 #include "trans2.h"
97 #include "nterr.h"
98 #include "charset.h"
99 #include "debug.h"
100 #include "doserr.h"
101 #include "enums.h"
102 #include "smb_macros.h"
103 #include "smb.h"
104 #include "byteorder.h"
105 #include "module.h"
106 #include "lib/tdr/tdr.h"
107 #include "librpc/ndr/libndr.h"
108 #include "librpc/gen_ndr/misc.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 "smb_interfaces.h"
114 #include "ntvfs/ntvfs.h"
115 #include "cli_context.h"
116 #include "lib/com/com.h"
118 #define malloc_p(type) (type *)malloc(sizeof(type))
119 #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
120 #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
122 /***** automatically generated prototypes *****/
123 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
124 #include "include/proto.h"
125 #undef _PRINTF_ATTRIBUTE
126 #define _PRINTF_ATTRIBUTE(a1, a2)
128 /* String routines */
130 #include "safe_string.h"
132 #ifndef HAVE_PIPE
133 #define SYNC_DNS 1
134 #endif
136 extern int DEBUGLEVEL;
138 #if defined(VALGRIND)
139 #define strlen(x) valgrind_strlen(x)
140 #endif
142 #if 0
143 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
144 #define TALLOC_ABORT(reason) smb_panic(reason)
145 #endif
148 this is a warning hack. The idea is to use this everywhere that we
149 get the "discarding const" warning from gcc. That doesn't actually
150 fix the problem of course, but it means that when we do get to
151 cleaning them up we can do it by searching the code for
152 discard_const.
154 It also means that other error types aren't as swamped by the noise
155 of hundreds of const warnings, so we are more likely to notice when
156 we get new errors.
158 Please only add more uses of this macro when you find it
159 _really_ hard to fix const warnings. Our aim is to eventually use
160 this function in only a very few places.
162 Also, please call this via the discard_const_p() macro interface, as that
163 makes the return type safe.
165 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
166 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
168 #ifndef UINT16_MAX
169 #define UINT16_MAX 65535
170 #endif
173 type safe varient of smb_xmalloc()
175 #define smb_xmalloc_p(type) (type *)smb_xmalloc(sizeof(type))
177 #endif /* _INCLUDES_H */