r14542: Remove librpc, libndr and libnbt from includes.h
[jelmer/samba4-debian.git] / source / 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 #ifndef _PUBLIC_
40 #ifdef HAVE_VISIBILITY_ATTR
41 #  define _PUBLIC_ __attribute__((visibility("default")))
42 #else
43 #  define _PUBLIC_
44 #endif
45 #endif
46
47 #ifndef PRINTF_ATTRIBUTE
48 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
49 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
50  * the parameter containing the format, and a2 the index of the first
51  * argument. Note that some gcc 2.x versions don't handle this
52  * properly **/
53 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
54 #else
55 #define PRINTF_ATTRIBUTE(a1, a2)
56 #endif
57 #endif
58
59 #ifndef NORETURN_ATTRIBUTE
60 #if (__GNUC__ >= 3)
61 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
62 #else
63 #define NORETURN_ATTRIBUTE
64 #endif
65 #endif
66
67 /* mark smb_panic() as noreturn, so static analysers know that it is
68    used like abort */
69 _PUBLIC_ void smb_panic(const char *why) NORETURN_ATTRIBUTE;
70
71 #include <sys/types.h>
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <stddef.h>
75 #include <sys/time.h>
76
77 #ifdef HAVE_STDINT_H
78 #include <stdint.h>
79 #endif
80
81 #ifdef HAVE_INTTYPES_H
82 #include <inttypes.h>
83 #endif
84
85 #ifdef HAVE_STRING_H
86 #include <string.h>
87 #endif
88
89 #include <signal.h>
90 #include <errno.h>
91
92 #ifdef HAVE_STDARG_H
93 #include <stdarg.h>
94 #else
95 #include <varargs.h>
96 #endif
97
98 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
99 #include "lib/replace/replace.h"
100
101 /* Lists, trees, caching, database... */
102 #include "talloc/talloc.h"
103 #include "core.h"
104 #include "charset/charset.h"
105 #include "util/util.h"
106 #include "param/param.h"
107 #include "libcli/util/nterr.h"
108 #include "libcli/util/doserr.h"
109 #include "librpc/gen_ndr/misc.h"
110
111 struct smbcli_tree;
112 #include "libcli/util/proto.h"
113
114 /* String routines */
115 #include "util/safe_string.h"
116
117 #if 0
118 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
119 #define TALLOC_ABORT(reason) smb_panic(reason)
120 #endif
121
122 #endif /* _INCLUDES_H */