From bf72c59c1bb465d3e8b687ac19108fac4d7f044a Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 9 Feb 2009 11:11:01 +0100 Subject: spoolss: fill in spoolss_DeletePrinterDriverEx IDL. Guenther --- librpc/idl/spoolss.idl | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'librpc/idl') diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 5299306b37..b5ac6cc7c3 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1504,7 +1504,18 @@ import "misc.idl", "security.idl", "winreg.idl"; /******************/ /* Function: 0x54 */ - [todo] WERROR spoolss_DeletePrinterDriverEx( + typedef [public,bitmap32bit] bitmap { + DPD_DELETE_UNUSED_FILES = 0x00000001, + DPD_DELETE_SPECIFIC_VERSION = 0x00000002, + DPD_DELETE_ALL_FILES = 0x00000004 + } spoolss_DeleteDriverFlags; + + WERROR spoolss_DeletePrinterDriverEx( + [in,unique] [string,charset(UTF16)] uint16 *server, + [in] [string,charset(UTF16)] uint16 architecture[], + [in] [string,charset(UTF16)] uint16 driver[], + [in] spoolss_DeleteDriverFlags delete_flags, + [in] uint32 version ); /******************/ -- cgit