diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-24 06:10:21 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-24 06:10:21 +0000 |
commit | a95efec534410cb96ab2e801eb601331b15ca23c (patch) | |
tree | 3ce7b7db0b0b953df98ee70edef62fc6891c8c95 /source3/include | |
parent | 2962a4cc616660dfc3ef5765a4911abec86ae36f (diff) | |
download | samba-a95efec534410cb96ab2e801eb601331b15ca23c.tar.gz samba-a95efec534410cb96ab2e801eb601331b15ca23c.tar.bz2 samba-a95efec534410cb96ab2e801eb601331b15ca23c.zip |
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)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/nt_printing.h | 11 |
1 files changed, 5 insertions, 6 deletions
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; |