diff options
author | Günther Deschner <gd@samba.org> | 2008-09-01 17:43:49 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-05 13:02:53 +0200 |
commit | d93506454d72b9aad924e45c9270bd05db7194f0 (patch) | |
tree | 99c1d73becc0ac5676e27a30743ae92c2b6da114 /source3/librpc | |
parent | 71196cf6adf5ccb610bbf878df45e99110cf8805 (diff) | |
download | samba-d93506454d72b9aad924e45c9270bd05db7194f0.tar.gz samba-d93506454d72b9aad924e45c9270bd05db7194f0.tar.bz2 samba-d93506454d72b9aad924e45c9270bd05db7194f0.zip |
netapi: add SERVER_INFO_100-102 to IDL.
Guenther
(This used to be commit 7a46743909bfbfccf522eecf2ba117d5651439ef)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 48f1686682..07944e6309 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -92,6 +92,36 @@ interface libnetapi /*******************************************/ [public] typedef struct { + uint32 sv100_platform_id; + string sv100_name; + } SERVER_INFO_100; + + [public] typedef struct { + uint32 sv101_platform_id; + string sv101_name; + uint32 sv101_version_major; + uint32 sv101_version_minor; + uint32 sv101_type; + string sv101_comment; + } SERVER_INFO_101; + + [public] typedef struct { + uint32 sv102_platform_id; + string sv102_name; + uint32 sv102_version_major; + uint32 sv102_version_minor; + uint32 sv102_type; + string sv102_comment; + uint32 sv102_users; + uint32 sv102_disc; + boolean8 sv102_hidden; + uint32 sv102_announce; + uint32 sv102_anndelta; + uint32 sv102_licenses; + string sv102_userpath; + } SERVER_INFO_102; + + [public] typedef struct { string sv1005_comment; } SERVER_INFO_1005; |