From c4416684f148f494a103fc85a0d54d0e16059735 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 2 Jul 2009 19:39:36 +0200 Subject: spoolss: the flags in spoolss_PrinterInfo1 are in fact spoolss_PrinterAttributes. Guenther --- librpc/idl/spoolss.idl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'librpc/idl/spoolss.idl') diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index f3064625a8..7dad7c92de 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -248,13 +248,6 @@ import "misc.idl", "security.idl", "winreg.idl"; PRINTER_ENUM_ICON7 | PRINTER_ENUM_ICON8); /* 0x00ff0000 */ - typedef [public,gensize] struct { - spoolss_EnumPrinterFlags flags; - [relative] nstring *description; - [relative] nstring *name; - [relative] nstring *comment; - } spoolss_PrinterInfo1; - typedef bitmap { PRINTER_ATTRIBUTE_QUEUED = 0x00000001, PRINTER_ATTRIBUTE_DIRECT = 0x00000002, @@ -274,6 +267,13 @@ import "misc.idl", "security.idl", "winreg.idl"; PRINTER_ATTRIBUTE_TS = 0x00008000 } spoolss_PrinterAttributes; + typedef [public,gensize] struct { + spoolss_PrinterAttributes flags; + [relative] nstring *description; + [relative] nstring *name; + [relative] nstring *comment; + } spoolss_PrinterInfo1; + typedef [public,gensize] struct { [relative] nstring *servername; [relative] nstring *printername; -- cgit