summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-10-31 03:54:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:06 -0500
commit75f1497c32bbae1d603b80810412a544303fce94 (patch)
tree92d401c47b9a97a151ac5a817cc6145ad7c97aed /source4/librpc/idl
parentb24fcfc1aadf56130f9f2f2371282c0c399611c2 (diff)
downloadsamba-75f1497c32bbae1d603b80810412a544303fce94.tar.gz
samba-75f1497c32bbae1d603b80810412a544303fce94.tar.bz2
samba-75f1497c32bbae1d603b80810412a544303fce94.zip
r3401: Fix IDL for SetForm RPC.
(This used to be commit 206f3de297c397c8894f9855ea8571c68823e1fc)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/spoolss.idl17
1 files changed, 16 insertions, 1 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl
index 204a7ec96c..486fcc6f94 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 {