Changeset 228 for trunk/python/pyregfi/structures.py
- Timestamp:
- 04/18/11 16:25:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/pyregfi/structures.py
r227 r228 171 171 REGFI_VALUE_LIST._fields_ = [('offset', c_uint32), 172 172 ('cell_size', c_uint32), 173 ('num_children', c_uint32),174 173 ('num_values', c_uint32), 175 174 ('elements', c_void_p), … … 247 246 regfi.regfi_get_rootkey.restype = POINTER(REGFI_NK) 248 247 249 regfi.regfi_free_record.argtypes = [ c_void_p]248 regfi.regfi_free_record.argtypes = [POINTER(REGFI_FILE), c_void_p] 250 249 regfi.regfi_free_record.restype = None 251 250 252 regfi.regfi_reference_record.argtypes = [ c_void_p]251 regfi.regfi_reference_record.argtypes = [POINTER(REGFI_FILE), c_void_p] 253 252 regfi.regfi_reference_record.restype = c_bool 254 253 … … 290 289 regfi.regfi_nt2unix_time.restype = c_double 291 290 292 regfi.regfi_iterator_new.argtypes = [POINTER(REGFI_FILE) , REGFI_ENCODING]291 regfi.regfi_iterator_new.argtypes = [POINTER(REGFI_FILE)] 293 292 regfi.regfi_iterator_new.restype = POINTER(REGFI_ITERATOR) 294 293 … … 305 304 regfi.regfi_iterator_to_root.restype = c_bool 306 305 307 regfi.regfi_iterator_walk_path.argtypes = [POINTER(REGFI_ITERATOR) ]306 regfi.regfi_iterator_walk_path.argtypes = [POINTER(REGFI_ITERATOR), POINTER(c_char_p)] 308 307 regfi.regfi_iterator_walk_path.restype = c_bool 309 308
Note: See TracChangeset
for help on using the changeset viewer.