Ignore:
Timestamp:
May 24, 2009, 7:51:24 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/include/reg_objects.h

    r206 r223  
    6767/* container for registry subkey names */
    6868
    69 typedef struct {
    70         uint32          num_subkeys;
    71         char            **subkeys;
    72         int seqnum;
    73 } REGSUBKEY_CTR;
     69struct regsubkey_ctr;
    7470
    7571/*
     
    133129typedef struct {
    134130        /* functions for enumerating subkeys and values */     
    135         int     (*fetch_subkeys)( const char *key, REGSUBKEY_CTR *subkeys);
     131        int     (*fetch_subkeys)( const char *key, struct regsubkey_ctr *subkeys);
    136132        int     (*fetch_values) ( const char *key, REGVAL_CTR *val );
    137         bool    (*store_subkeys)( const char *key, REGSUBKEY_CTR *subkeys );
     133        bool    (*store_subkeys)( const char *key, struct regsubkey_ctr *subkeys );
     134        WERROR  (*create_subkey)(const char *key, const char *subkey);
     135        WERROR  (*delete_subkey)(const char *key, const char *subkey);
    138136        bool    (*store_values)( const char *key, REGVAL_CTR *val );
    139137        bool    (*reg_access_check)( const char *keyname, uint32 requested,
     
    144142        WERROR (*set_secdesc)(const char *key,
    145143                              struct security_descriptor *sec_desc);
    146         bool    (*subkeys_need_update)(REGSUBKEY_CTR *subkeys);
     144        bool    (*subkeys_need_update)(struct regsubkey_ctr *subkeys);
    147145        bool    (*values_need_update)(REGVAL_CTR *values);
    148146} REGISTRY_OPS;
     
    165163struct registry_key {
    166164        REGISTRY_KEY *key;
    167         REGSUBKEY_CTR *subkeys;
     165        struct regsubkey_ctr *subkeys;
    168166        REGVAL_CTR *values;
    169167        struct nt_user_token *token;
Note: See TracChangeset for help on using the changeset viewer.