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