diff options
author | Günther Deschner <gd@samba.org> | 2009-03-16 21:09:36 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-04-15 09:07:01 +0200 |
commit | 4609f182484cecec665ed4c40aed6965c1806de7 (patch) | |
tree | 2bb45499efe89cffd089f9413fe1cfb87e387c4d /librpc/idl/spoolss.idl | |
parent | 957f1ba46d20821bb4b908b60f72980379d0b6d9 (diff) | |
download | samba-4609f182484cecec665ed4c40aed6965c1806de7.tar.gz |
spoolss: add spoolss_PrinterEnumValues.
Guenther
(cherry picked from commit b12c3178efd3e640fc5de6418d2fb0074dd84d4e)
(cherry picked from commit 8ed5eaf07d024cc7aad1da03d32bbc5b445da31a)
Diffstat (limited to 'librpc/idl/spoolss.idl')
-rw-r--r-- | librpc/idl/spoolss.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 8010374c2ad..fc87814fc0c 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -2218,6 +2218,15 @@ import "misc.idl", "security.idl", "winreg.idl"; /******************/ /* Function: 0x4f */ + + typedef [relative_base,public,gensize] struct { + [relative] nstring *value_name; + [value(2*strlen_m_term(value_name))] uint32 value_name_len; + winreg_Type type; + [relative,switch_is(type),subcontext(0),subcontext_size(data_length)] spoolss_PrinterData *data; + [value(ndr_size_spoolss_PrinterData(data, type, ndr->iconv_convenience, ndr->flags))] uint32 data_length; + } spoolss_PrinterEnumValues; + [public] WERROR spoolss_EnumPrinterDataEx( [in,ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 key_name[], |