1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

spoolss: fill in spoolss_DeletePrinterDriverEx IDL.

Guenther
This commit is contained in:
Günther Deschner 2009-02-09 11:11:01 +01:00
parent b8cafc5ad2
commit bf72c59c1b

View File

@ -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
);
/******************/