diff options
author | Günther Deschner <gd@samba.org> | 2008-10-19 00:21:24 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-19 00:21:24 +0200 |
commit | 0d0ab1263957e981457211c0ba0afc69ea404fb7 (patch) | |
tree | 1782fab0d22608ff6b618334ef396a2d133e5fbc /librpc | |
parent | f34b6bfe3413f16c5ccc5ceb8f0b7f478f1e9e5b (diff) | |
download | samba-0d0ab1263957e981457211c0ba0afc69ea404fb7.tar.gz samba-0d0ab1263957e981457211c0ba0afc69ea404fb7.tar.bz2 samba-0d0ab1263957e981457211c0ba0afc69ea404fb7.zip |
ntsvcs: fill in PNP_GetDeviceList() and correct some unknowns.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/ntsvcs.idl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/librpc/idl/ntsvcs.idl b/librpc/idl/ntsvcs.idl index cfafbead6c..809ead90c3 100644 --- a/librpc/idl/ntsvcs.idl +++ b/librpc/idl/ntsvcs.idl @@ -67,7 +67,12 @@ interface ntsvcs /******************/ /* Function: 0x0a */ - [todo] WERROR PNP_GetDeviceList(); + [todo] WERROR PNP_GetDeviceList( + [in,unique] [string,charset(UTF16)] uint16 *filter, + [out,ref] [size_is(*length),length_is(*length)] uint16 *buffer, + [in,out,ref] uint32 *length, + [in] uint32 flags + ); /******************/ /* Function: 0x0b */ @@ -91,11 +96,11 @@ interface ntsvcs WERROR PNP_GetDeviceRegProp( [in,ref] [string,charset(UTF16)] uint16 *devicepath, [in] uint32 property, - [in,out,ref] uint32 *unknown1, + [in,out,ref] uint32 *reg_data_type, [out,ref] [size_is(*buffer_size)] [length_is(*buffer_size)] uint8 *buffer, [in,out,ref] uint32 *buffer_size, [in,out,ref] uint32 *needed, - [in] uint32 unknown3 + [in] uint32 flags ); /******************/ |