From 80b3e5b36efb5f7c48b43e8f5d67a102ae71ebf5 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 12 Feb 2009 17:45:09 +0100 Subject: spoolss: always set version 2 in notify info and option structs. Guenther --- librpc/idl/spoolss.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 5710dd988c..f3d0747d0f 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1458,7 +1458,7 @@ import "misc.idl", "security.idl", "winreg.idl"; } spoolss_NotifyOptionsArray; typedef struct { - uint32 version; + [value(2)] uint32 version; uint32 flags; uint32 count; [size_is(count)] spoolss_NotifyOptionsArray *options; @@ -1506,7 +1506,7 @@ import "misc.idl", "security.idl", "winreg.idl"; } spoolss_Notify; typedef struct { - uint32 version; + [value(2)] uint32 version; uint32 flags; uint32 count; [size_is(count)] spoolss_Notify notifies[]; -- cgit