From a2c82976b86cbdddbf9f7cb08f5d461c6cde86c6 Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Sat, 16 Sep 2000 10:07:46 +0000 Subject: in a printer_info_6, driver version is 64 bits long and there is a 32 bit padding before. J.F. (This used to be commit cd41d7a35477accec1a82b86f9fa3477e5a49d6e) --- source3/include/rpc_spoolss.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/include/rpc_spoolss.h') diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index 43e81914d0..61b20c36c8 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -53,7 +53,6 @@ #define SPOOLSS_FINDFIRSTPRINTERCHANGENOTIFICATION 0x36 #define SPOOLSS_FINDNEXTPRINTERCHANGENOTIFICATION 0x37 #define SPOOLSS_ROUTERFINDFIRSTPRINTERNOTIFICATIONOLD 0x39 -#define SPOOLSS_REPLYOPENPRINTER 0x3a #define SPOOLSS_ROUTERREPLYPRINTER 0x3b #define SPOOLSS_REPLYCLOSEPRINTER 0x3c #define SPOOLSS_ADDPORTEX 0x3d @@ -99,6 +98,7 @@ #define SPOOLSS_GETPRINTERDRIVER2 0x35 /* find close printer notification */ #define SPOOLSS_FCPN 0x38 +#define SPOOLSS_REPLYOPENPRINTER 0x3a /* remote find first printer change notifyEx */ #define SPOOLSS_RFFPCNEX 0x41 /* remote find next printer change notifyEx */ @@ -918,7 +918,9 @@ typedef struct driver_info_6 UNISTR defaultdatatype; uint16* previousdrivernames; NTTIME driver_date; - uint32 driver_version; + uint32 padding; + uint32 driver_version_low; + uint32 driver_version_high; UNISTR mfgname; UNISTR oem_url; UNISTR hardware_id; -- cgit