summaryrefslogtreecommitdiff
path: root/source3/include/reg_objects.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-02-26 02:54:50 +0100
committerMichael Adam <obnox@samba.org>2009-02-26 13:22:55 +0100
commit97508eefb78598fcf15c07b4c0cb92dbf21c30f7 (patch)
tree1dbe3cfc92c06c47135900debb2b0bafb22b27dd /source3/include/reg_objects.h
parent61bdfd09edbdea38486bbca3c148d224c7d523fc (diff)
downloadsamba-97508eefb78598fcf15c07b4c0cb92dbf21c30f7.tar.gz
samba-97508eefb78598fcf15c07b4c0cb92dbf21c30f7.tar.bz2
samba-97508eefb78598fcf15c07b4c0cb92dbf21c30f7.zip
s3:registry: add a delete_subkey method to the backend ops.
This is to provide a more atomic means of deleting a subkey of a key. Michael
Diffstat (limited to 'source3/include/reg_objects.h')
-rw-r--r--source3/include/reg_objects.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h
index 29cd4c563d..a03ac1bff4 100644
--- a/source3/include/reg_objects.h
+++ b/source3/include/reg_objects.h
@@ -132,6 +132,7 @@ typedef struct {
int (*fetch_values) ( const char *key, REGVAL_CTR *val );
bool (*store_subkeys)( const char *key, struct regsubkey_ctr *subkeys );
WERROR (*create_subkey)(const char *key, const char *subkey);
+ WERROR (*delete_subkey)(const char *key, const char *subkey);
bool (*store_values)( const char *key, REGVAL_CTR *val );
bool (*reg_access_check)( const char *keyname, uint32 requested,
uint32 *granted,