diff options
author | Günther Deschner <gd@samba.org> | 2007-05-30 10:24:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:53:06 -0500 |
commit | adf23c651b120d3bfe67a551d0569705831999b8 (patch) | |
tree | b2e2fe16760b7ad6ecfbefb826bea6e18e5b0d46 /source4/librpc/idl | |
parent | 4d1a21f24d9d2f4326e380cadb24c842c2dfb688 (diff) | |
download | samba-adf23c651b120d3bfe67a551d0569705831999b8.tar.gz samba-adf23c651b120d3bfe67a551d0569705831999b8.tar.bz2 samba-adf23c651b120d3bfe67a551d0569705831999b8.zip |
r23240: Fill in netr_DsrGetDcSiteCoverageW.
Guenther
(This used to be commit 9c2b9642336ed954c8f9fc0ccce95547d7c18aa8)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 6f860a8ca4..b83454908e 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -1145,7 +1145,16 @@ interface netlogon /****************/ /* Function 0x26 */ - WERROR netr_DSRGETDCSITECOVERAGEW(); + + typedef struct { + uint32 num_sites; + [size_is(num_sites)] [unique] lsa_String *sites; + } DcSitesCtr; + + WERROR netr_DsrGetDcSiteCoverageW( + [in] [string,charset(UTF16)] uint16 *server_name, + [out] DcSitesCtr *ctr + ); /****************/ /* Function 0x27 */ |