diff options
author | Günther Deschner <gd@samba.org> | 2009-11-27 01:49:08 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-12-08 11:05:21 +0100 |
commit | 35c50dcce35622b6f2806b9ae7f6ff6b54b6cbbf (patch) | |
tree | 1ec3532f05f10909ff09489e13c52d46cd649073 /source3/include | |
parent | 35c067782b1dcd354dd825af3e853adf4c74e1d1 (diff) | |
download | samba-35c50dcce35622b6f2806b9ae7f6ff6b54b6cbbf.tar.gz samba-35c50dcce35622b6f2806b9ae7f6ff6b54b6cbbf.tar.bz2 samba-35c50dcce35622b6f2806b9ae7f6ff6b54b6cbbf.zip |
s3-spoolss: use driver level info8 everywhere in spoolss server internally.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6ae9e8801e..3fd1d18977 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4869,15 +4869,15 @@ uint32_t add_a_printer_driver(TALLOC_CTX *mem_ctx, char **driver_name, uint32_t *version); WERROR get_a_printer_driver(TALLOC_CTX *mem_ctx, - union spoolss_DriverInfo **driver_p, uint32_t level, + struct spoolss_DriverInfo8 **driver_p, const char *drivername, const char *architecture, uint32_t version); -uint32_t free_a_printer_driver(union spoolss_DriverInfo *driver); -bool printer_driver_in_use(const struct spoolss_DriverInfo3 *info_3); +uint32_t free_a_printer_driver(struct spoolss_DriverInfo8 *driver); +bool printer_driver_in_use(const struct spoolss_DriverInfo8 *r); bool printer_driver_files_in_use(TALLOC_CTX *mem_ctx, - struct spoolss_DriverInfo3 *info); + struct spoolss_DriverInfo8 *r); WERROR delete_printer_driver(struct pipes_struct *rpc_pipe, - const struct spoolss_DriverInfo3 *info_3, + const struct spoolss_DriverInfo8 *r, uint32 version, bool delete_files ); WERROR nt_printing_setsec(const char *sharename, SEC_DESC_BUF *secdesc_ctr); bool nt_printing_getsec(TALLOC_CTX *ctx, const char *sharename, SEC_DESC_BUF **secdesc_ctr); |