summaryrefslogtreecommitdiff
path: root/source4/include/registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/include/registry.h')
-rw-r--r--source4/include/registry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/include/registry.h b/source4/include/registry.h
index 5865636836..e2f8bc087a 100644
--- a/source4/include/registry.h
+++ b/source4/include/registry.h
@@ -131,11 +131,11 @@ struct hive_operations {
/* Key management */
WERROR (*add_key)(TALLOC_CTX *, struct registry_key *, const char *name, uint32_t access_mask, SEC_DESC *, struct registry_key **);
- WERROR (*del_key)(struct registry_key *);
+ WERROR (*del_key)(struct registry_key *, const char *name);
WERROR (*flush_key) (struct registry_key *);
/* Value management */
- WERROR (*set_value)(struct registry_key *, const char *name, int type, void *data, int len);
+ WERROR (*set_value)(struct registry_key *, const char *name, uint32 type, void *data, int len);
WERROR (*del_value)(struct registry_key *, const char *valname);
};