diff options
author | Gerald Carter <jerry@samba.org> | 2002-07-11 01:54:26 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-07-11 01:54:26 +0000 |
commit | 496e85dd812b932caf5e6169e03df6b31a378966 (patch) | |
tree | 6a9c67fc75048bf7fdf61c96f46578d23b17b25b /source3/include | |
parent | b60bb290e0fa1588eb674fc2e058a7fab8c681ed (diff) | |
download | samba-496e85dd812b932caf5e6169e03df6b31a378966.tar.gz samba-496e85dd812b932caf5e6169e03df6b31a378966.tar.bz2 samba-496e85dd812b932caf5e6169e03df6b31a378966.zip |
intermediate work on DeletePrinterDriverEx(). This call
will actually delete driver files ( not yet though I don't think).
Just wanted to get it in since Jeremy and I are both
working on nt_printing.c
(This used to be commit 3fa6c3132950c9ff1c6a532d8264ee34a6b2b0ff)
Diffstat (limited to 'source3/include')
-rwxr-xr-x | source3/include/rpc_spoolss.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index 82062d5278..18cf35f440 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -401,16 +401,19 @@ PRINTER_MESSAGE_INFO; /* FLAGS for SPOOLSS_DELETEPRINTERDRIVEREX */ -#define DPD_DELETE_UNUSED_FILES 0x00000001 -#define DPD_DELETE_SPECIFIC_VERSION 0x00000002 -#define DPD_DELETE_ALL_FILES 0x00000004 +#define DPD_DELETE_UNUSED_FILES 0x00000001 +#define DPD_DELETE_SPECIFIC_VERSION 0x00000002 +#define DPD_DELETE_ALL_FILES 0x00000004 + +#define DRIVER_ANY_VERSION 0xffffffff +#define DRIVER_MAX_VERSION 4 /* FLAGS for SPOOLSS_ADDPRINTERDRIVEREX */ -#define APD_STRICT_UPGRADE 0x00000001 -#define APD_STRICT_DOWNGRADE 0x00000002 -#define APD_COPY_ALL_FILES 0x00000004 -#define APD_COPY_NEW_FILES 0x00000008 +#define APD_STRICT_UPGRADE 0x00000001 +#define APD_STRICT_DOWNGRADE 0x00000002 +#define APD_COPY_ALL_FILES 0x00000004 +#define APD_COPY_NEW_FILES 0x00000008 /* this struct is undocumented */ |