brought the winbindd code into head
[ira/wip.git] / source3 / nsswitch / winbind_nss_config.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 2.0
4
5    Winbind daemon for ntdom nss module
6
7    Copyright (C) Tim Potter 2000
8    
9    This library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Library General Public
11    License as published by the Free Software Foundation; either
12    version 2 of the License, or (at your option) any later version.
13    
14    This library 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 GNU
17    Library General Public License for more details.
18    
19    You should have received a copy of the GNU Library General Public
20    License along with this library; if not, write to the
21    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA  02111-1307, USA.   
23 */
24
25 #ifndef _NTDOM_CONFIG_H
26 #define _NTDOM_CONFIG_H
27
28 /* Include header files from data in config.h file */
29
30 #include <config.h>
31
32 #include <stdio.h>
33
34 #ifdef HAVE_STDLIB_H
35 #include <stdlib.h>
36 #endif
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
42 #ifdef HAVE_SYS_SOCKET_H
43 #include <sys/socket.h>
44 #endif
45
46 #ifdef HAVE_SYS_UN_H
47 #include <sys/un.h>
48 #endif
49
50 #ifdef HAVE_SYS_TIME_H
51 #include <sys/time.h>
52 #endif
53
54 #ifdef HAVE_GRP_H
55 #include <grp.h>
56 #endif
57
58 #include <sys/types.h>
59 #include <sys/stat.h>
60 #include <errno.h>
61 #include <pwd.h>
62 #include <nss.h>
63
64 /* I'm trying really hard not to include anything from smb.h with the
65    result of some silly looking redeclaration of structures. */
66
67 #ifndef _PSTRING
68 #define _PSTRING
69 #define PSTRING_LEN 1024
70 #define FSTRING_LEN 128
71 typedef char pstring[PSTRING_LEN];
72 typedef char fstring[FSTRING_LEN];
73 #endif
74
75 #ifndef _BOOL
76 #define _BOOL                   /* So we don't typedef BOOL again in vfs.h */
77 #define False (0)
78 #define True (1)
79 #define Auto (2)
80 typedef int BOOL;
81 #endif
82
83 #if !defined(uint32)
84 #if (SIZEOF_INT == 4)
85 #define uint32 unsigned int
86 #elif (SIZEOF_LONG == 4)
87 #define uint32 unsigned long
88 #elif (SIZEOF_SHORT == 4)
89 #define uint32 unsigned short
90 #endif
91 #endif
92
93 #if !defined(uint16)
94 #if (SIZEOF_SHORT == 4)
95 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
96 #else /* SIZEOF_SHORT != 4 */
97 #define uint16 unsigned short
98 #endif /* SIZEOF_SHORT != 4 */
99 #endif
100
101 #ifndef uint8
102 #define uint8 unsigned char
103 #endif
104
105 /* zero a structure */
106 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
107
108 /* zero a structure given a pointer to the structure */
109 #define ZERO_STRUCTP(x) { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); }
110
111 #endif