diff options
author | Günther Deschner <gd@samba.org> | 2008-01-17 10:11:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-01-17 16:54:46 +0100 |
commit | 101f275b988185ed3e47bc8061483a781c4d47c9 (patch) | |
tree | 9d1496e1bc9a1a796c8fe94184e810ce0605e1f7 /source3/include | |
parent | 8c81ce9a6004f1ae2d6f1812d08820d7244598c1 (diff) | |
download | samba-101f275b988185ed3e47bc8061483a781c4d47c9.tar.gz samba-101f275b988185ed3e47bc8061483a781c4d47c9.tar.bz2 samba-101f275b988185ed3e47bc8061483a781c4d47c9.zip |
Use pidl generated data from misc.idl.
Guenther
(This used to be commit 5d8e5cbc3b3ddd1c5788d66f252e4801739243bb)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 744acd719f..350584a52e 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -310,7 +310,16 @@ struct id_map { enum id_mapping status; }; -#include "librpc/ndr/misc.h" +/* used to hold an arbitrary blob of data */ +typedef struct data_blob { + uint8 *data; + size_t length; + void (*free)(struct data_blob *data_blob); +} DATA_BLOB; + +extern const DATA_BLOB data_blob_null; + +#include "librpc/gen_ndr/misc.h" #include "librpc/ndr/security.h" #include "librpc/ndr/libndr.h" #include "librpc/gen_ndr/lsa.h" @@ -532,15 +541,6 @@ typedef struct files_struct { #include "ntquotas.h" #include "sysquotas.h" -/* used to hold an arbitrary blob of data */ -typedef struct data_blob { - uint8 *data; - size_t length; - void (*free)(struct data_blob *data_blob); -} DATA_BLOB; - -extern const DATA_BLOB data_blob_null; - /* * Structure used to keep directory state information around. * Used in NT change-notify code. |