summaryrefslogtreecommitdiff
path: root/source3/include/registry.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-09-20 02:10:43 +0200
committerGünther Deschner <gd@samba.org>2010-09-20 02:27:41 +0200
commit91e8f8ded2f78bdd5b1db11562a575488a024322 (patch)
tree60f0d2a35d984539f6a0625cc320e99a06ae4925 /source3/include/registry.h
parent323f729df07794da6b79db5e72b1389fb79b8bde (diff)
downloadsamba-91e8f8ded2f78bdd5b1db11562a575488a024322.tar.gz
samba-91e8f8ded2f78bdd5b1db11562a575488a024322.tar.bz2
samba-91e8f8ded2f78bdd5b1db11562a575488a024322.zip
s3-registry: move regf based reg_api calls into own file.
Guenther
Diffstat (limited to 'source3/include/registry.h')
-rw-r--r--source3/include/registry.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/include/registry.h b/source3/include/registry.h
index 66a364d97d..8aa02b9d85 100644
--- a/source3/include/registry.h
+++ b/source3/include/registry.h
@@ -169,8 +169,6 @@ WERROR reg_getkeysecurity(TALLOC_CTX *mem_ctx, struct registry_key *key,
WERROR reg_setkeysecurity(struct registry_key *key,
struct security_descriptor *psecdesc);
WERROR reg_getversion(uint32_t *version);
-WERROR reg_restorekey(struct registry_key *key, const char *fname);
-WERROR reg_savekey(struct registry_key *key, const char *fname);
WERROR reg_deleteallvalues(struct registry_key *key);
WERROR reg_open_path(TALLOC_CTX *mem_ctx, const char *orig_path,
uint32 desired_access, const struct security_token *token,
@@ -189,6 +187,11 @@ WERROR reg_create_path(TALLOC_CTX *mem_ctx, const char *orig_path,
WERROR reg_delete_path(const struct security_token *token,
const char *orig_path);
+/* The following definitions come from registry/reg_api_regf.c */
+
+WERROR reg_restorekey(struct registry_key *key, const char *fname);
+WERROR reg_savekey(struct registry_key *key, const char *fname);
+
/* The following definitions come from registry/reg_init_basic.c */
WERROR registry_init_common(void);