diff options
author | Jean-François Micouleau <jfm@samba.org> | 2000-09-16 10:07:46 +0000 |
---|---|---|
committer | Jean-François Micouleau <jfm@samba.org> | 2000-09-16 10:07:46 +0000 |
commit | a2c82976b86cbdddbf9f7cb08f5d461c6cde86c6 (patch) | |
tree | 15339e3cdae46e774ce18e209d669669457b3bf7 /source3/include | |
parent | 244c29619965779d1076ea47d84d0d7edf3bef2d (diff) | |
download | samba-a2c82976b86cbdddbf9f7cb08f5d461c6cde86c6.tar.gz samba-a2c82976b86cbdddbf9f7cb08f5d461c6cde86c6.tar.bz2 samba-a2c82976b86cbdddbf9f7cb08f5d461c6cde86c6.zip |
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)
Diffstat (limited to 'source3/include')
-rwxr-xr-x | source3/include/rpc_spoolss.h | 6 |
1 files changed, 4 insertions, 2 deletions
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; |