summaryrefslogtreecommitdiff
path: root/source3/include/registry.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-06-30 02:02:43 +0200
committerGünther Deschner <gd@samba.org>2010-06-30 21:46:08 +0200
commit21869f5ed00af5a05f1d109339cd8b725fcc7d61 (patch)
tree03feb469cae74c0fc0df28472c6a77d739cbaf2c /source3/include/registry.h
parenta329dd02674010e673fbcc7acf369a19befb6738 (diff)
downloadsamba-21869f5ed00af5a05f1d109339cd8b725fcc7d61.tar.gz
samba-21869f5ed00af5a05f1d109339cd8b725fcc7d61.tar.bz2
samba-21869f5ed00af5a05f1d109339cd8b725fcc7d61.zip
s3-registry: add reg_querymultiplevalues() to reg_api.
Guenther
Diffstat (limited to 'source3/include/registry.h')
-rw-r--r--source3/include/registry.h6
1 files changed, 6 insertions, 0 deletions
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,