r22967: Move to the TCP packet interface for the krb5_send_to_kdc plugin.
[Samba.git] / source / include / includes.h
blobf1188e2aaf66a59a80d5ea2f7c6c709e9a0e97f6
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 #include "lib/replace/replace.h"
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 */
34 #include "local.h"
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
45 #ifndef _PUBLIC_
46 #ifdef HAVE_VISIBILITY_ATTR
47 # define _PUBLIC_ __attribute__((visibility("default")))
48 #else
49 # define _PUBLIC_
50 #endif
51 #endif
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
65 #ifndef NORETURN_ATTRIBUTE
66 #if (__GNUC__ >= 3)
67 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
68 #else
69 #define NORETURN_ATTRIBUTE
70 #endif
71 #endif
73 /* mark smb_panic() as noreturn, so static analysers know that it is
74 used like abort */
75 _PUBLIC_ void smb_panic(const char *why) NORETURN_ATTRIBUTE;
77 #include "system/time.h"
78 #include "system/wait.h"
80 #ifndef _PRINTF_ATTRIBUTE
81 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
82 #endif
84 /* Lists, trees, caching, database... */
85 #include "talloc/talloc.h"
86 #include "core.h"
87 #include "charset/charset.h"
88 #include "util/util.h"
89 #include "param/param.h"
90 #include "librpc/gen_ndr/misc.h"
92 struct smbcli_tree;
93 #include "libcli/util/error.h"
95 /* String routines */
96 #include "util/safe_string.h"
98 #if 0
99 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
100 #define TALLOC_ABORT(reason) smb_panic(reason)
101 #endif
103 #endif /* _INCLUDES_H */