summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2006-09-18 20:00:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:57 -0500
commitafa7c10fe8d7305cd147ee5fce491aba3e12a421 (patch)
tree1372c90bcf80d5993e43b634389269550ce9d811 /source4/librpc
parent18dcabaae040d963e5b92621dc59d3e01253665d (diff)
downloadsamba-afa7c10fe8d7305cd147ee5fce491aba3e12a421.tar.gz
samba-afa7c10fe8d7305cd147ee5fce491aba3e12a421.tar.bz2
samba-afa7c10fe8d7305cd147ee5fce491aba3e12a421.zip
r18625: dfs_GetManagerVersion() returns a version number, not just an exist
flag. Guenther (This used to be commit 3e42ccc6096198458f66841f91234f670ceb59c4)
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/idl/dfs.idl8
1 files changed, 7 insertions, 1 deletions
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
);