diff options
author | Günther Deschner <gd@samba.org> | 2010-02-16 02:48:01 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-18 15:47:59 +0100 |
commit | 28817424935e5b6eaf465fe993dedc2b0a0cf177 (patch) | |
tree | 8e4827f8d0ba646722aaeeb064ae36719d8d3654 /librpc/idl | |
parent | 70f8b34f513ceeb736061d79e9d44dda39b51642 (diff) | |
download | samba-28817424935e5b6eaf465fe993dedc2b0a0cf177.tar.gz samba-28817424935e5b6eaf465fe993dedc2b0a0cf177.tar.bz2 samba-28817424935e5b6eaf465fe993dedc2b0a0cf177.zip |
spoolss: add spoolss_security_descriptor.
Guenther
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/spoolss.idl | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 3365ea3319..48162097cc 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -5,6 +5,9 @@ */ import "misc.idl", "security.idl", "winreg.idl"; + +cpp_quote("#define spoolss_security_descriptor security_descriptor") + [ uuid("12345678-1234-abcd-ef00-0123456789ab"), version(1.0), endpoint("ncacn_np:[\\pipe\\spoolss]"), @@ -478,7 +481,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [relative] nstring *printprocessor; [relative] nstring *datatype; [relative] nstring *parameters; - [relative,subcontext(0),flag(NDR_ALIGN4)] security_descriptor *secdesc; + [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_security_descriptor *secdesc; spoolss_PrinterAttributes attributes; [range(0,99)] uint32 priority; uint32 defaultpriority; @@ -490,7 +493,7 @@ import "misc.idl", "security.idl", "winreg.idl"; } spoolss_PrinterInfo2; typedef [public,gensize] struct { - [relative,subcontext(0),flag(NDR_ALIGN4)] security_descriptor *secdesc; + [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_security_descriptor *secdesc; } spoolss_PrinterInfo3; typedef [public,gensize] struct { @@ -621,7 +624,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [relative] nstring *driver_name; [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_DeviceMode *devmode; [relative] nstring *text_status; - [relative,subcontext(0),flag(NDR_ALIGN4)] security_descriptor *secdesc; + [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_security_descriptor *secdesc; spoolss_JobStatus status; [range(0,99)] uint32 priority; uint32 position; @@ -653,7 +656,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [relative] nstring *driver_name; [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_DeviceMode *devmode; [relative] nstring *text_status; - [relative,subcontext(0),flag(NDR_ALIGN4)] security_descriptor *secdesc; + [relative,subcontext(0),flag(NDR_ALIGN4)] spoolss_security_descriptor *secdesc; spoolss_JobStatus status; [range(0,99)] uint32 priority; uint32 position; |