diff options
author | Günther Deschner <gd@samba.org> | 2009-02-06 13:42:23 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-06 14:59:20 +0100 |
commit | cb5837dc192dabfe5d0edfb1be9acc3672785cd4 (patch) | |
tree | 843eea1823115d713ab88de0d3bd0bd74a5ada5a /librpc | |
parent | 121b5f4afdb22ae720947183303feab4c48f41a3 (diff) | |
download | samba-cb5837dc192dabfe5d0edfb1be9acc3672785cd4.tar.gz samba-cb5837dc192dabfe5d0edfb1be9acc3672785cd4.tar.bz2 samba-cb5837dc192dabfe5d0edfb1be9acc3672785cd4.zip |
spoolss: fix spoolss_EnumPrinterDataEx IDL.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 8d444da5ab..0b51c3d02d 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1467,10 +1467,10 @@ import "misc.idl", "security.idl", "winreg.idl"; [public] WERROR spoolss_EnumPrinterDataEx( [in,ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 key_name[], + [out,ref] [size_is(offered)] uint8 *buffer, [in] uint32 offered, - [out] DATA_BLOB buffer, - [out] uint32 needed, - [out] uint32 count + [out,ref] uint32 *needed, + [out,ref] uint32 *count ); /******************/ |