diff options
author | Günther Deschner <gd@samba.org> | 2009-03-16 15:22:59 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-17 11:14:53 +0100 |
commit | 28c6f1fb4734b6285e7684ec27f62481371a8654 (patch) | |
tree | 3a7a1dae16e3c63add8be356220c70ab04907642 /librpc | |
parent | b560a99718a4c9d448c4d482486da127362db50a (diff) | |
download | samba-28c6f1fb4734b6285e7684ec27f62481371a8654.tar.gz samba-28c6f1fb4734b6285e7684ec27f62481371a8654.tar.bz2 samba-28c6f1fb4734b6285e7684ec27f62481371a8654.zip |
spoolss: use uint8 array instead of DATA_BLOB in EnumPrinterData IDL out pointer.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 7b6be7fc66..f8c341abf4 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -2164,7 +2164,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [in] uint32 value_offered, [out,ref] uint32 *value_needed, [out,ref] uint32 *printerdata_type, - [out,ref] DATA_BLOB *buffer, + [out,ref,size_is(data_offered),flag(LIBNDR_PRINT_ARRAY_HEX)] uint8 *data, [in] uint32 data_offered, [out,ref] uint32 *data_needed ); |