Changeset 223 for branches/samba-3.3.x/source/include/reg_objects.h
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/include/reg_objects.h
r206 r223 67 67 /* container for registry subkey names */ 68 68 69 typedef struct { 70 uint32 num_subkeys; 71 char **subkeys; 72 int seqnum; 73 } REGSUBKEY_CTR; 69 struct regsubkey_ctr; 74 70 75 71 /* … … 133 129 typedef struct { 134 130 /* 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); 136 132 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); 138 136 bool (*store_values)( const char *key, REGVAL_CTR *val ); 139 137 bool (*reg_access_check)( const char *keyname, uint32 requested, … … 144 142 WERROR (*set_secdesc)(const char *key, 145 143 struct security_descriptor *sec_desc); 146 bool (*subkeys_need_update)( REGSUBKEY_CTR*subkeys);144 bool (*subkeys_need_update)(struct regsubkey_ctr *subkeys); 147 145 bool (*values_need_update)(REGVAL_CTR *values); 148 146 } REGISTRY_OPS; … … 165 163 struct registry_key { 166 164 REGISTRY_KEY *key; 167 REGSUBKEY_CTR*subkeys;165 struct regsubkey_ctr *subkeys; 168 166 REGVAL_CTR *values; 169 167 struct nt_user_token *token;
Note:
See TracChangeset
for help on using the changeset viewer.