r25026: Move param/param.h out of includes.h
[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 3 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, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "lib/replace/replace.h"
24
25 /* make sure we have included the correct config.h */
26 #ifndef NO_CONFIG_H /* for some tests */
27 #ifndef CONFIG_H_IS_FROM_SAMBA
28 #error "make sure you have removed all config.h files from standalone builds!"
29 #error "the included config.h isn't from samba!"
30 #endif
31 #endif /* NO_CONFIG_H */
32
33 #include "local.h"
34
35 #ifdef __GNUC__
36 /** gcc attribute used on function parameters so that it does not emit
37  * warnings about them being unused. **/
38 #  define UNUSED(param) param __attribute__ ((unused))
39 #else
40 #  define UNUSED(param) param
41 /** Feel free to add definitions for other compilers here. */
42 #endif
43
44 #ifndef _PUBLIC_
45 #ifdef HAVE_VISIBILITY_ATTR
46 #  define _PUBLIC_ __attribute__((visibility("default")))
47 #else
48 #  define _PUBLIC_
49 #endif
50 #endif
51
52 #ifndef PRINTF_ATTRIBUTE
53 #if __GNUC__ >= 3
54 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
55  * the parameter containing the format, and a2 the index of the first
56  * argument. Note that some gcc 2.x versions don't handle this
57  * properly **/
58 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
59 #else
60 #define PRINTF_ATTRIBUTE(a1, a2)
61 #endif
62 #endif
63
64 #ifndef _DEPRECATED_
65 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
66 #define _DEPRECATED_ __attribute__ ((deprecated))
67 #else
68 #define _DEPRECATED_
69 #endif
70 #endif
71
72 #ifndef _WARN_UNUSED_RESULT_
73 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
74 #define _WARN_UNUSED_RESULT_ __attribute__ ((warn_unused_result))
75 #else
76 #define _WARN_UNUSED_RESULT_
77 #endif
78 #endif
79
80 #ifndef _NORETURN_
81 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
82 #define _NORETURN_ __attribute__ ((noreturn))
83 #else
84 #define _NORETURN_
85 #endif
86 #endif
87
88 #ifndef _PURE_
89 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1)
90 #define _PURE_ __attribute__((pure))
91 #else
92 #define _PURE_
93 #endif
94 #endif
95
96 #ifndef NONNULL
97 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1)
98 #define NONNULL(param) param __attribute__((nonnull))
99 #else
100 #define NONNULL(param) param
101 #endif
102 #endif
103
104 #include "system/time.h"
105 #include "system/wait.h"
106
107 #ifndef _PRINTF_ATTRIBUTE
108 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
109 #endif
110
111 /* Lists, trees, caching, database... */
112 #include <stdlib.h>
113 #include <stdbool.h>
114 #include <talloc.h>
115 #include "libcli/util/nt_status.h"
116 #include "charset/charset.h"
117 #include "util/util.h"
118 #include "librpc/gen_ndr/misc.h"
119
120 typedef bool BOOL;
121
122 #define False false
123 #define True true
124
125 struct smbcli_tree;
126 #include "libcli/util/error.h"
127
128 /* String routines */
129 #include "util/safe_string.h"
130
131 #if 0
132 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
133 #define TALLOC_ABORT(reason) smb_panic(reason)
134 #endif
135
136 #endif /* _INCLUDES_H */