summaryrefslogtreecommitdiff
path: root/source3/include/reg_objects.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-02-25 21:59:54 +0100
committerMichael Adam <obnox@samba.org>2009-02-26 13:22:54 +0100
commit602bfeb3605767c2d938f547ddebe5693776028c (patch)
tree6c0cf9714c1c051f42c91485e879da32737cab77 /source3/include/reg_objects.h
parent51795b723eedecbbcb89c822c68ee51151bc6592 (diff)
downloadsamba-602bfeb3605767c2d938f547ddebe5693776028c.tar.gz
samba-602bfeb3605767c2d938f547ddebe5693776028c.tar.bz2
samba-602bfeb3605767c2d938f547ddebe5693776028c.zip
s3:registry: add a create_subkey method to the backend ops.
This is to provide a more atomic means of adding 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 421db72d29..29cd4c563d 100644
--- a/source3/include/reg_objects.h
+++ b/source3/include/reg_objects.h
@@ -131,6 +131,7 @@ typedef struct {
int (*fetch_subkeys)( const char *key, struct regsubkey_ctr *subkeys);
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);
bool (*store_values)( const char *key, REGVAL_CTR *val );
bool (*reg_access_check)( const char *keyname, uint32 requested,
uint32 *granted,