diff options
author | Günther Deschner <gd@samba.org> | 2009-02-21 21:03:13 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-21 21:12:45 +0100 |
commit | acfa1278ae6611783f9a13e54ac78c10bc828b9f (patch) | |
tree | bdece3e15959b50604f49e377c7940de4f6eaf03 /librpc | |
parent | dc8ab10d3d321e8389391f485d6ed177534de2cb (diff) | |
download | samba-acfa1278ae6611783f9a13e54ac78c10bc828b9f.tar.gz samba-acfa1278ae6611783f9a13e54ac78c10bc828b9f.tar.bz2 samba-acfa1278ae6611783f9a13e54ac78c10bc828b9f.zip |
spoolss: add spoolssNotifyOptionFlags.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 4bb68fac00..b441f17cf1 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1644,9 +1644,13 @@ import "misc.idl", "security.idl", "winreg.idl"; [size_is(count)] spoolss_Field *fields; } spoolss_NotifyOptionType; + typedef [bitmap32bit] bitmap { + PRINTER_NOTIFY_OPTIONS_REFRESH = 0x00000001 + } spoolssNotifyOptionFlags; + typedef struct { [value(2)] uint32 version; - uint32 flags; + spoolssNotifyOptionFlags flags; uint32 count; [size_is(count)] spoolss_NotifyOptionType *types; } spoolss_NotifyOption; |