From 21869f5ed00af5a05f1d109339cd8b725fcc7d61 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 30 Jun 2010 02:02:43 +0200 Subject: s3-registry: add reg_querymultiplevalues() to reg_api. Guenther --- source3/include/registry.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/include/registry.h') diff --git a/source3/include/registry.h b/source3/include/registry.h index 703176f339..00c27cf021 100644 --- a/source3/include/registry.h +++ b/source3/include/registry.h @@ -163,6 +163,12 @@ WERROR reg_enumvalue(TALLOC_CTX *mem_ctx, struct registry_key *key, uint32 idx, char **pname, struct registry_value **pval); WERROR reg_queryvalue(TALLOC_CTX *mem_ctx, struct registry_key *key, const char *name, struct registry_value **pval); +WERROR reg_querymultiplevalues(TALLOC_CTX *mem_ctx, + struct registry_key *key, + uint32_t num_names, + const char **names, + uint32_t *pnum_vals, + struct registry_value **pvals); WERROR reg_queryinfokey(struct registry_key *key, uint32_t *num_subkeys, uint32_t *max_subkeylen, uint32_t *max_subkeysize, uint32_t *num_values, uint32_t *max_valnamelen, -- cgit