r8434: Win32 portability updates from Steven Edwards <steven_ed4153@yahoo.com>:
[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 #include "smb_build.h"
27 #endif
28
29 #include "local.h"
30
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
39
40 #include <sys/types.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stddef.h>
44 #include <sys/time.h>
45
46 #ifdef HAVE_STDINT_H
47 #include <stdint.h>
48 #endif
49
50 #ifdef HAVE_STRING_H
51 #include <string.h>
52 #endif
53
54 #include <signal.h>
55 #include <errno.h>
56
57 #ifdef HAVE_STDARG_H
58 #include <stdarg.h>
59 #else
60 #include <varargs.h>
61 #endif
62
63 #ifdef HAVE_WINSOCK2_H
64 #include <winsock2.h>
65 #endif
66
67 #ifdef HAVE_WINDOWS_H
68 #include <windows.h>
69 #endif
70
71 #if defined(_MSC_VER) || defined(__MINGW32__)
72 #include "lib/replace/win32/replace.h"
73 #endif
74
75 /* we support ADS if we want it and have krb5 and ldap libs */
76 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
77 #define HAVE_ADS
78 #endif
79
80 /* tell ldb we have the internal ldap code */
81 #define HAVE_ILDAP 1
82
83 /*
84  * Define VOLATILE if needed.
85  */
86
87 #define False (0)
88 #define True (1)
89 #define Auto (2)
90
91 typedef int BOOL;
92
93 /*
94   we use struct ipv4_addr to avoid having to include all the
95   system networking headers everywhere
96 */
97 struct ipv4_addr {
98         uint32_t addr;
99 };
100
101 #ifndef HAVE_STRERROR
102 extern char *sys_errlist[];
103 #define strerror(i) sys_errlist[i]
104 #endif
105
106 #ifndef HAVE_ERRNO_DECL
107 extern int errno;
108 #endif
109
110 #include "lib/replace/replace.h"
111
112 /* Lists, trees, caching, database... */
113 #include "xfile.h"
114 #include "lib/talloc/talloc.h"
115 #include "nt_status.h"
116 #include "structs.h"
117 #include "trans2.h"
118 #include "nterr.h"
119 #include "charset.h"
120 #include "debug.h"
121 #include "doserr.h"
122 #include "enums.h"
123 #include "smb_macros.h"
124 #include "smb.h"
125 #include "byteorder.h"
126 #include "module.h"
127 #include "librpc/ndr/libndr.h"
128 #include "librpc/gen_ndr/ndr_misc.h"
129 #include "librpc/gen_ndr/ndr_dcerpc.h"
130 #include "librpc/ndr/ndr_orpc.h"
131 #include "librpc/gen_ndr/ndr_orpc.h"
132 #include "librpc/rpc/dcerpc.h"
133 #include "smb_interfaces.h"
134 #include "ntvfs/ntvfs.h"
135 #include "cli_context.h"
136 #include "lib/com/com.h"
137 #include "credentials.h"
138
139
140
141 #define malloc_p(type) (type *)malloc(sizeof(type))
142 #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
143 #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
144
145 /***** automatically generated prototypes *****/
146 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
147 #include "proto.h"
148 #undef _PRINTF_ATTRIBUTE
149 #define _PRINTF_ATTRIBUTE(a1, a2)
150
151 /* String routines */
152
153 #include "safe_string.h"
154
155 #ifndef HAVE_PIPE
156 #define SYNC_DNS 1
157 #endif
158
159 extern int DEBUGLEVEL;
160
161 #if defined(VALGRIND)
162 #define strlen(x) valgrind_strlen(x)
163 #endif
164
165 #if 0
166 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
167 #define TALLOC_ABORT(reason) smb_panic(reason)
168 #endif
169
170 /*
171   this is a warning hack. The idea is to use this everywhere that we
172   get the "discarding const" warning from gcc. That doesn't actually
173   fix the problem of course, but it means that when we do get to
174   cleaning them up we can do it by searching the code for
175   discard_const.
176
177   It also means that other error types aren't as swamped by the noise
178   of hundreds of const warnings, so we are more likely to notice when
179   we get new errors.
180
181   Please only add more uses of this macro when you find it
182   _really_ hard to fix const warnings. Our aim is to eventually use
183   this function in only a very few places.
184
185   Also, please call this via the discard_const_p() macro interface, as that
186   makes the return type safe.
187 */
188 #ifdef HAVE_INTPTR_T
189 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
190 #else
191 #define discard_const(ptr) ((void *)(ptr))
192 #endif
193 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
194
195 #ifndef HAVE_SSIZE_T
196 #define ssize_t int
197 #endif
198
199 #ifndef UINT16_MAX
200 #define UINT16_MAX 65535
201 #endif
202
203 /*
204   type safe varient of smb_xmalloc()
205 */
206 #define smb_xmalloc_p(type) (type *)smb_xmalloc(sizeof(type))
207
208 #endif /* _INCLUDES_H */
209