spoolss: fix order of strings in PrinterInfo1 structs.
authorGünther Deschner <gd@samba.org>
Mon, 13 Apr 2009 12:15:21 +0000 (14:15 +0200)
committerGünther Deschner <gd@samba.org>
Mon, 13 Apr 2009 14:10:31 +0000 (16:10 +0200)
Guenther

librpc/idl/spoolss.idl

index a1bb95aa9fa471dae9e5330cd0e144041df3be46..98760574fb54729dde3f5683f03e0387e60db3d8 100644 (file)
@@ -250,8 +250,8 @@ import "misc.idl", "security.idl", "winreg.idl";
 
        typedef [public,gensize] struct {
                spoolss_EnumPrinterFlags flags;
-               [relative] nstring *name;
                [relative] nstring *description;
+               [relative] nstring *name;
                [relative] nstring *comment;
        } spoolss_PrinterInfo1;
 
@@ -684,8 +684,8 @@ import "misc.idl", "security.idl", "winreg.idl";
 
        typedef struct {
                spoolss_EnumPrinterFlags flags;
-               [string,charset(UTF16)] uint16 *name;
                [string,charset(UTF16)] uint16 *description;
+               [string,charset(UTF16)] uint16 *name;
                [string,charset(UTF16)] uint16 *comment;
        } spoolss_SetPrinterInfo1;