diff options
author | Günther Deschner <gd@samba.org> | 2013-01-24 23:31:19 +0100 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2013-05-20 18:50:00 +0200 |
commit | 1aafc844a721746b4feddbd2d547463a43821a2f (patch) | |
tree | b17986f396a21a67c1e6531e3c0f4654e9c98bc4 /librpc | |
parent | cc38511903dbf34eeb358759f00341f60688acdb (diff) | |
download | samba-1aafc844a721746b4feddbd2d547463a43821a2f.tar.gz samba-1aafc844a721746b4feddbd2d547463a43821a2f.tar.bz2 samba-1aafc844a721746b4feddbd2d547463a43821a2f.zip |
spoolss: make RPC_PrintNamedProperty public
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 7e5980cac2..74bcfd0711 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -3340,12 +3340,12 @@ cpp_quote("#define spoolss_security_descriptor security_descriptor") [case(kRpcPropertyTypeBuffer)] propertyBlob propertyBlob; } RPC_PrintPropertyValueUnion; - typedef struct { + typedef [public] struct { RPC_EPrintPropertyType ePropertyType; [switch_is(ePropertyType)] RPC_PrintPropertyValueUnion value; } RPC_PrintPropertyValue; - typedef struct { + typedef [public] struct { [string,charset(UTF16)] uint16 *propertyName; RPC_PrintPropertyValue propertyValue; } RPC_PrintNamedProperty; |