From afa7c10fe8d7305cd147ee5fce491aba3e12a421 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 18 Sep 2006 20:00:51 +0000 Subject: r18625: dfs_GetManagerVersion() returns a version number, not just an exist flag. Guenther (This used to be commit 3e42ccc6096198458f66841f91234f670ceb59c4) --- source4/librpc/idl/dfs.idl | 8 +++++++- 1 file changed, 7 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 62e0fb900a..9a3d28f1d9 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -11,8 +11,14 @@ { /******************/ /* Function: 0x00 */ + typedef [v1_enum] enum { + DFS_MANAGER_VERSION_NT4 = 0, + DFS_MANAGER_VERSION_W2K = 2, + DFS_MANAGER_VERSION_W2K3 = 4 + } dfs_ManagerVersion; + void dfs_GetManagerVersion( - [out] uint32 *exist_flag + [out] dfs_ManagerVersion *version ); -- cgit