s3:registry: replace typedef REGISTRY_KEY by struct registry_key_handle
[gd/samba/.git] / source3 / include / reg_objects.h
index bcc83769792f1230748fb0fba3eae1c29e287f21..a3f9c9c5918dd3bcd9489b347e422aff4654b746 100644 (file)
@@ -153,15 +153,15 @@ typedef struct {
 
 /* structure to store the registry handles */
 
-typedef struct _RegistryKey {
+struct registry_key_handle {
        uint32          type;
        char            *name;          /* full name of registry key */
        uint32          access_granted;
        REGISTRY_OPS    *ops;
-} REGISTRY_KEY;
+};
 
 struct registry_key {
-       REGISTRY_KEY *key;
+       struct registry_key_handle *key;
        struct regsubkey_ctr *subkeys;
        struct regval_ctr *values;
        struct nt_user_token *token;