From b33e877aad0485c88ba4ff0223004e92c4cb78e2 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 21 Apr 2010 18:12:50 +0200 Subject: s3-spoolss: Added more winreg hepler functions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner --- source3/rpc_server/srv_spoolss_util.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'source3/rpc_server') diff --git a/source3/rpc_server/srv_spoolss_util.c b/source3/rpc_server/srv_spoolss_util.c index 79af761b0d..a20a772f57 100644 --- a/source3/rpc_server/srv_spoolss_util.c +++ b/source3/rpc_server/srv_spoolss_util.c @@ -1058,6 +1058,26 @@ static WERROR winreg_enumval_to_multi_sz(TALLOC_CTX *mem_ctx, return WERR_OK; } +static WERROR winreg_enumval_to_blob(TALLOC_CTX *mem_ctx, + struct spoolss_PrinterEnumValues *v, + const char *valuename, + DATA_BLOB *blob) +{ + /* just return if it is not the one we are looking for */ + if (strcmp(valuename, v->value_name) != 0) { + return WERR_NOT_FOUND; + } + + if (v->type != REG_BINARY) { + return WERR_INVALID_DATATYPE; + } + + blob->data = v->data->data; + blob->length = v->data_length; + + return WERR_OK; +} + /******************************************************************** Public winreg function for spoolss ********************************************************************/ -- cgit