~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source4/include/includes.h

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 "../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 "system/time.h"
 
34
#include "system/wait.h"
 
35
 
 
36
/* only do the C++ reserved word check when we compile
 
37
   to include --with-developer since too many systems
 
38
   still have comflicts with their header files (e.g. IRIX 6.4) */
 
39
 
 
40
#if !defined(__cplusplus) && defined(DEVELOPER)
 
41
#define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
42
#define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
43
#define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
44
#define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
45
#define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
46
#define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
47
#define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
48
#define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
49
#define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
 
50
#endif
 
51
 
 
52
/* Lists, trees, caching, database... */
 
53
#include <talloc.h>
 
54
#ifndef _PRINTF_ATTRIBUTE
 
55
#define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
 
56
#endif
 
57
#include "../lib/util/xfile.h"
 
58
#include "../lib/util/attr.h"
 
59
#include "../lib/util/debug.h"
 
60
#include "../lib/util/util.h"
 
61
 
 
62
#include "libcli/util/error.h"
 
63
 
 
64
/* String routines */
 
65
#include "../lib/util/safe_string.h"
 
66
 
 
67
#if 0
 
68
/* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
 
69
#define TALLOC_ABORT(reason) smb_panic(reason)
 
70
#endif
 
71
 
 
72
#endif /* _INCLUDES_H */