From 63b22a74f69cbc5035e8875d656041b5da975f66 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 13 Apr 2009 16:01:30 +0200 Subject: spoolss: add spoolss_DriverAttributes bitmask. Guenther --- librpc/idl/spoolss.idl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'librpc/idl') diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 98760574fb..5b9f551d26 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -836,6 +836,10 @@ import "misc.idl", "security.idl", "winreg.idl"; spoolss_StringArray *previous_names; } spoolss_AddDriverInfo4; + typedef [bitmap32bit] bitmap { + PRINTER_DRIVER_PACKAGE_AWARE = 0x00000002 + } spoolss_DriverAttributes; + typedef struct { spoolss_DriverOSVersion version; [string,charset(UTF16)] uint16 *driver_name; @@ -843,7 +847,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [string,charset(UTF16)] uint16 *driver_path; [string,charset(UTF16)] uint16 *data_file; [string,charset(UTF16)] uint16 *config_file; - uint32 driver_attributes; + spoolss_DriverAttributes driver_attributes; uint32 config_version; uint32 driver_version; } spoolss_AddDriverInfo5; @@ -968,7 +972,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [relative] nstring *driver_path; [relative] nstring *data_file; [relative] nstring *config_file; - uint32 driver_attributes; + spoolss_DriverAttributes driver_attributes; uint32 config_version; uint32 driver_version; } spoolss_DriverInfo5; -- cgit