r13847: Fix some portability issues with the visibility attribute.
[abartlet/samba.git/.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 #ifdef HAVE_VISIBILITY_ATTR
40 #  define _PUBLIC_ __attribute__((visibility("default")))
41 #else
42 #  define _PUBLIC_
43 #endif
44
45 #ifndef PRINTF_ATTRIBUTE
46 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
47 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
48  * the parameter containing the format, and a2 the index of the first
49  * argument. Note that some gcc 2.x versions don't handle this
50  * properly **/
51 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
52 #else
53 #define PRINTF_ATTRIBUTE(a1, a2)
54 #endif
55 #endif
56
57 #include <sys/types.h>
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <stddef.h>
61 #include <sys/time.h>
62
63 #ifdef HAVE_STDINT_H
64 #include <stdint.h>
65 #endif
66
67 #ifdef HAVE_INTTYPES_H
68 #include <inttypes.h>
69 #endif
70
71 #ifdef HAVE_STRING_H
72 #include <string.h>
73 #endif
74
75 #include <signal.h>
76 #include <errno.h>
77
78 #ifdef HAVE_STDARG_H
79 #include <stdarg.h>
80 #else
81 #include <varargs.h>
82 #endif
83
84 /* protocol types. It assumes that higher protocols include lower protocols
85    as subsets. FIXME: Move to one of the smb-specific headers */
86 enum protocol_types {
87         PROTOCOL_NONE,
88         PROTOCOL_CORE,
89         PROTOCOL_COREPLUS,
90         PROTOCOL_LANMAN1,
91         PROTOCOL_LANMAN2,
92         PROTOCOL_NT1
93 };
94
95 /* passed to br lock code. FIXME: Move to one of the smb-specific headers */
96 enum brl_type {
97         READ_LOCK,
98         WRITE_LOCK,
99         PENDING_READ_LOCK,
100         PENDING_WRITE_LOCK
101 };
102
103 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
104 #include "lib/replace/replace.h"
105
106 /* Lists, trees, caching, database... */
107 #include "nt_status.h"
108 #include "talloc/talloc.h"
109 #include "core.h"
110 #include "charset/charset.h"
111 #include "structs.h"
112 #include "util/util.h"
113 #include "libcli/util/nterr.h"
114 #include "libcli/util/doserr.h"
115 #include "librpc/ndr/libndr.h"
116 #include "librpc/gen_ndr/dcerpc.h"
117 #include "librpc/ndr/ndr_orpc.h"
118 #include "librpc/gen_ndr/orpc.h"
119 #include "librpc/rpc/dcerpc.h"
120 #include "libcli/raw/trans2.h"
121 #include "libcli/raw/interfaces.h"
122 #include "auth/credentials/credentials.h"
123 #include "libcli/nbt/libnbt.h"
124
125 #undef _PRINTF_ATTRIBUTE
126 #define _PRINTF_ATTRIBUTE(a1, a2)
127
128 /***** automatically generated prototypes *****/
129 #include "include/proto.h"
130
131 /* String routines */
132
133 #include "util/safe_string.h"
134
135 extern int DEBUGLEVEL;
136
137 #if defined(VALGRIND)
138 #define strlen(x) valgrind_strlen(x)
139 #endif
140
141 #if 0
142 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
143 #define TALLOC_ABORT(reason) smb_panic(reason)
144 #endif
145
146 /*
147   this is a warning hack. The idea is to use this everywhere that we
148   get the "discarding const" warning from gcc. That doesn't actually
149   fix the problem of course, but it means that when we do get to
150   cleaning them up we can do it by searching the code for
151   discard_const.
152
153   It also means that other error types aren't as swamped by the noise
154   of hundreds of const warnings, so we are more likely to notice when
155   we get new errors.
156
157   Please only add more uses of this macro when you find it
158   _really_ hard to fix const warnings. Our aim is to eventually use
159   this function in only a very few places.
160
161   Also, please call this via the discard_const_p() macro interface, as that
162   makes the return type safe.
163 */
164 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
165 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
166
167 #endif /* _INCLUDES_H */