diff options
author | Tim Potter <tpot@samba.org> | 2004-10-31 03:54:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:06 -0500 |
commit | 75f1497c32bbae1d603b80810412a544303fce94 (patch) | |
tree | 92d401c47b9a97a151ac5a817cc6145ad7c97aed /source4/librpc/idl/spoolss.idl | |
parent | b24fcfc1aadf56130f9f2f2371282c0c399611c2 (diff) | |
download | samba-75f1497c32bbae1d603b80810412a544303fce94.tar.gz samba-75f1497c32bbae1d603b80810412a544303fce94.tar.xz samba-75f1497c32bbae1d603b80810412a544303fce94.zip |
r3401: Fix IDL for SetForm RPC.
(This used to be commit 206f3de297c397c8894f9855ea8571c68823e1fc)
Diffstat (limited to 'source4/librpc/idl/spoolss.idl')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index 204a7ec96c1..486fcc6f947 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -483,13 +483,28 @@ [in,out,ref] uint32 *buf_size ); + typedef struct { + uint32 flags; + unistr *formname; + uint32 width; + uint32 length; + uint32 left; + uint32 top; + uint32 right; + uint32 bottom; + } spoolss_SetFormInfo1; + + typedef union { + [case(1)] spoolss_AddFormInfo1 *info1; + } spoolss_SetFormInfo; + /******************/ /* Function: 0x21 */ WERROR spoolss_SetForm( [in,ref] policy_handle *handle, [in] unistr formname, [in] uint32 level, - [in,switch_is(level)] spoolss_AddFormInfo info + [in,switch_is(level)] spoolss_SetFormInfo info ); typedef [nodiscriminant,public] union { |