diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-03 00:17:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:22 -0500 |
commit | 6f214cc510a59b7a65ee9d4486baf14a3e579f73 (patch) | |
tree | 4e579f2500247716babf400b3bbf13039bacce02 /source4/include/includes.h | |
parent | acb23b2c5fa02ebbee762a8bf4b9d1fec40d4fea (diff) | |
download | samba-6f214cc510a59b7a65ee9d4486baf14a3e579f73.tar.gz samba-6f214cc510a59b7a65ee9d4486baf14a3e579f73.tar.bz2 samba-6f214cc510a59b7a65ee9d4486baf14a3e579f73.zip |
r3494: got rid of include/rewrite.h, and split out the dynconfig.h header
(This used to be commit 558de54ec6432a4ae90aa14a585f32c6cd03ced2)
Diffstat (limited to 'source4/include/includes.h')
-rw-r--r-- | source4/include/includes.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index 78397faac6..9f2c233e73 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -127,6 +127,12 @@ #define uint64 uint64_t #endif +#define False (0) +#define True (1) +#define Auto (2) + +typedef int BOOL; + /* we use struct ipv4_addr to avoid having to include all the system networking headers everywhere @@ -152,11 +158,7 @@ extern char *sys_errlist[]; extern int errno; #endif -/* Our own pstrings and fstrings */ -#include "pstring.h" - /* Lists, trees, caching, database... */ -#include "dynconfig.h" #include "version.h" #include "xfile.h" #include "talloc.h" @@ -169,7 +171,12 @@ extern int errno; #include "trans2.h" #include "nterr.h" #include "charset.h" -#include "rewrite.h" +#include "debug.h" +#include "doserr.h" +#include "enums.h" +#include "pstring.h" +#include "smb_macros.h" +#include "rpc_secdes.h" #include "smb.h" #include "ads.h" #include "lib/socket/socket.h" |