From a95efec534410cb96ab2e801eb601331b15ca23c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 May 2000 06:10:21 +0000 Subject: a fairly big change in spoolss. got rid of the forms, drivers and printers files in the nt drivers directory and instead use a single tdb note that this is _not_ all finished. (This used to be commit 06763d1ec2fafc42f8ee3f36f0aeacceb3a7109d) --- source3/include/nt_printing.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'source3/include/nt_printing.h') diff --git a/source3/include/nt_printing.h b/source3/include/nt_printing.h index cec0f994eb..9f89ed0568 100644 --- a/source3/include/nt_printing.h +++ b/source3/include/nt_printing.h @@ -145,8 +145,7 @@ typedef struct nt_printer_driver_info_level_3 fstring helpfile; fstring monitorname; fstring defaultdatatype; - char **dependentfiles; - + fstring *dependentfiles; } NT_PRINTER_DRIVER_INFO_LEVEL_3; /* SPOOL_PRINTER_DRIVER_INFO_LEVEL_6 structure */ @@ -164,8 +163,8 @@ typedef struct { fstring oemurl; fstring hardwareid; fstring provider; - char **dependentfiles; - char **previousnames; + fstring *dependentfiles; + fstring *previousnames; } NT_PRINTER_DRIVER_INFO_LEVEL_6; @@ -249,7 +248,7 @@ typedef struct nt_printer_info_level_2 /* not used but ... and how ??? */ uint32 changeid; uint32 c_setprinter; - time_t setuptime; + uint32 setuptime; } NT_PRINTER_INFO_LEVEL_2; typedef struct nt_printer_info_level @@ -259,7 +258,7 @@ typedef struct nt_printer_info_level typedef struct { - char name[100]; + fstring name; uint32 flag; uint32 width; uint32 length; -- cgit