diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-07-31 09:25:28 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-07-31 14:38:41 +0200 |
commit | 5899bc002abcf6377adb01e518c89515bec2cdad (patch) | |
tree | 23a9927c05a433c3d4529e7f4932e69650df4965 /source4/librpc/idl | |
parent | 5fd30f8dfb4cec6393989454103b2fb32e6fa885 (diff) | |
download | samba-5899bc002abcf6377adb01e518c89515bec2cdad.tar.gz |
winsif.idl: add definition of winsif_WinsGetBrowserNames_Old()
metze
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/winsif.idl | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/source4/librpc/idl/winsif.idl b/source4/librpc/idl/winsif.idl index e94307650c..01844c74a7 100644 --- a/source4/librpc/idl/winsif.idl +++ b/source4/librpc/idl/winsif.idl @@ -244,7 +244,19 @@ import "nbt.idl"; /*****************/ /* Function 0x0E */ - void WinsGetBrowserNames_Old(); + typedef struct { + uint32 name_len; + [string,charset(DOS)] uint8 *name; + } winsif_BrowserInfo; + + typedef struct { + uint32 num_entries; + [size_is(num_entries)] winsif_BrowserInfo *info; + } winsif_BrowserNames; + + WERROR winsif_WinsGetBrowserNames_Old( + [out,ref] winsif_BrowserNames *names + ); /*****************/ /* Function 0x0F */ |