r14205: move smb specific stuff out of includes.h (finally!!!:-)
[ira/wip.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         PROTOCOL_SMB2
94 };
95
96 /* passed to br lock code. FIXME: Move to one of the smb-specific headers */
97 enum brl_type {
98         READ_LOCK,
99         WRITE_LOCK,
100         PENDING_READ_LOCK,
101         PENDING_WRITE_LOCK
102 };
103
104 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
105 #include "lib/replace/replace.h"
106
107 /* Lists, trees, caching, database... */
108 #include "libcli/util/nt_status.h"
109 #include "talloc/talloc.h"
110 #include "core.h"
111 #include "charset/charset.h"
112 #include "structs.h"
113 #include "util/util.h"
114 #include "param/param.h"
115 #include "libcli/util/nterr.h"
116 #include "libcli/util/doserr.h"
117 #include "librpc/ndr/libndr.h"
118 #include "librpc/gen_ndr/dcerpc.h"
119 #include "librpc/ndr/ndr_orpc.h"
120 #include "librpc/gen_ndr/orpc.h"
121 #include "librpc/rpc/dcerpc.h"
122 #include "auth/credentials/credentials.h"
123 #include "libcli/nbt/libnbt.h"
124 #include "libcli/util/proto.h"
125
126 #undef _PRINTF_ATTRIBUTE
127 #define _PRINTF_ATTRIBUTE(a1, a2)
128
129 /***** automatically generated prototypes *****/
130 #include "include/proto.h"
131
132 /* String routines */
133
134 #include "util/safe_string.h"
135
136 #if 0
137 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
138 #define TALLOC_ABORT(reason) smb_panic(reason)
139 #endif
140
141 #endif /* _INCLUDES_H */