From 218a4ca176672a1248346fc8eab710f536eb3a17 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 20 Sep 2006 19:00:15 +0000 Subject: r18734: Add flag to distinguish a standalone from a domain based DFS root. Guenther (This used to be commit 5d9941acdbce2cab63dbd09d3fff84ac8edb20c3) --- source4/librpc/idl/dfs.idl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source4/librpc/idl/dfs.idl') diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 26533dfedf..4f450ca28b 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -159,8 +159,13 @@ [string,charset(UTF16)] uint16 *dom_root; } dfs_Info200; + typedef enum { + DFS_VOLUME_FLAVOR_STANDALONE = 0x100, + DFS_VOLUME_FLAVOR_AD_BLOB = 0x200 + } dfs_VolumeFlavor; + typedef struct { - uinr32 flavor; + dfs_VolumeFlavor flavor; [string,charset(UTF16)] uint16 *dom_root; } dfs_Info300; -- cgit