diff options
author | Günther Deschner <gd@samba.org> | 2008-12-12 22:53:51 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-12-17 23:06:48 +0100 |
commit | ef6bf7f385f10d1015e8c5692f71ea98b0b84d22 (patch) | |
tree | bb5bcb57f10b3aa7126a897204bd1aba7bda85cd /librpc/idl | |
parent | e01026cd4b984f545e38d2e48f2abb9cbe18f366 (diff) | |
download | samba-ef6bf7f385f10d1015e8c5692f71ea98b0b84d22.tar.gz samba-ef6bf7f385f10d1015e8c5692f71ea98b0b84d22.tar.bz2 samba-ef6bf7f385f10d1015e8c5692f71ea98b0b84d22.zip |
netlogon: add netr_NETLOGON_INFO_4.
Guenther
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/netlogon.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index c3a028c587..1df5f66c67 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -846,10 +846,16 @@ interface netlogon uint32 unknown5; } netr_NETLOGON_INFO_3; + typedef struct { + [string,charset(UTF16)] uint16 *trusted_dc_name; + [string,charset(UTF16)] uint16 *trusted_domain_name; + } netr_NETLOGON_INFO_4; + typedef union { [case(1)] netr_NETLOGON_INFO_1 *info1; [case(2)] netr_NETLOGON_INFO_2 *info2; [case(3)] netr_NETLOGON_INFO_3 *info3; + [case(4)] netr_NETLOGON_INFO_4 *info4; } netr_CONTROL_QUERY_INFORMATION; /* function_code values */ |