diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-06-14 17:01:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:11 -0500 |
commit | bc1f32b8ad644dbe8fb7b5405d4f11c0e06f4193 (patch) | |
tree | 8d8f7000453ba4375367ecc50d9eeddbc4caf80f /source4/librpc/idl | |
parent | 04c3bbe05336f4ad0f2d73964676c9cda95f7027 (diff) | |
download | samba-bc1f32b8ad644dbe8fb7b5405d4f11c0e06f4193.tar.gz samba-bc1f32b8ad644dbe8fb7b5405d4f11c0e06f4193.tar.bz2 samba-bc1f32b8ad644dbe8fb7b5405d4f11c0e06f4193.zip |
r7575: - fix GetPrinterData() push side
- add somemore checks in the Emun*() pull/push glue code
metze
(This used to be commit 075fe1eb4b6b2d00cdd9965656598aaec53da638)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index 2b557d25d2..93efe7805f 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -723,25 +723,25 @@ [default,flag(NDR_REMAINING)] DATA_BLOB data; } spoolss_PrinterData; - [noopnum,nopush,noprint,public] WERROR _spoolss_GetPrinterData( + [noopnum,noprint,public] WERROR _spoolss_GetPrinterData( [in,ref] policy_handle *handle, - [in] unistr value_name, - [in] uint32 offered, - [out] spoolss_PrinterDataType type, - [out] DATA_BLOB data, - [out] uint32 needed + [in] unistr value_name, + [in] uint32 offered, + [out] spoolss_PrinterDataType type, + [out] DATA_BLOB data, + [out] uint32 needed ); - [noopnum,nopush,noprint,public] void __spoolss_GetPrinterData( + [noopnum,noprint,public] void __spoolss_GetPrinterData( [in] spoolss_PrinterDataType type, [out,switch_is(type)] spoolss_PrinterData data ); - [nopull] WERROR spoolss_GetPrinterData( + [nopull,nopush] WERROR spoolss_GetPrinterData( [in,ref] policy_handle *handle, - [in] unistr value_name, - [in] uint32 offered, - [out] spoolss_PrinterDataType type, + [in] unistr value_name, + [in] uint32 offered, + [out] spoolss_PrinterDataType type, [out,subcontext(4),switch_is(type)] spoolss_PrinterData data, - [out] uint32 needed + [out] uint32 needed ); /******************/ |